2 writes to Value
System.Windows.Forms.Design (2)
System\ComponentModel\Design\DesignerActionPanel.PropertyLine.cs (2)
74Value = PropertyDescriptor.GetValue(_actionList); 100Value = PropertyDescriptor.GetValue(info.List);
8 references to Value
System.Windows.Forms.Design (8)
System\ComponentModel\Design\DesignerActionPanel.CheckBoxPropertyLine.cs (1)
62_checkBox.Checked = (bool)Value!;
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (3)
41object? newValue = _editor.EditValue(TypeDescriptorContext, this, Value); 69if ((standardValue is not null) && standardValue.Equals(Value)) 296_editor.PaintValue(Value, swatchGraphics, rect);
System\ComponentModel\Design\DesignerActionPanel.PropertyLine.cs (1)
70if (!Equals(Value, newValue))
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (3)
198if (Equals(Value, standardValues[i])) 228if (Equals(Value, standardValues[i])) 286protected override void OnValueChanged() => EditControl!.Text = PropertyDescriptor.Converter.ConvertToString(TypeDescriptorContext, Value);