1 write to PropertyItem
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionPanel.PropertyLine.cs (1)
97
PropertyItem
= info.Item;
9 references to PropertyItem
System.Windows.Forms.Design (9)
System\ComponentModel\Design\DesignerActionPanel.CheckBoxPropertyLine.cs (3)
53
_checkBox.Text = StripAmpersands(
PropertyItem
!.DisplayName);
54
_checkBox.AccessibleDescription =
PropertyItem
.Description;
57
toolTip.SetToolTip(_checkBox,
PropertyItem
.Description);
System\ComponentModel\Design\DesignerActionPanel.PropertyLine.cs (2)
23
public sealed override string FocusId => $"PROPERTY:{_actionList!.GetType().FullName}.{
PropertyItem
!.MemberName}";
25
protected PropertyDescriptor PropertyDescriptor => _propDesc ??= TypeDescriptor.GetProperties(_actionList!)[
PropertyItem
!.MemberName]!;
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (4)
127
_label.Text = StripAmpersands(
PropertyItem
!.DisplayName);
129
toolTip.SetToolTip(_label,
PropertyItem
.Description);
149
EditControl.AccessibleDescription =
PropertyItem
.Description;
150
EditControl.AccessibleName = StripAmpersands(
PropertyItem
.DisplayName);