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