4 writes to Value
System.Windows.Forms.Design (4)
System\Drawing\Design\ContentAlignmentEditor.ContentUI.cs (1)
455protected override void UpdateValue() => Value = Align;
System\Drawing\Design\SelectionPanelBase.cs (2)
32Value = null; 128Value = value;
System\Windows\Forms\Design\DockEditor.DockUI.cs (1)
289protected override void UpdateValue() => Value = DockStyle;
4 references to Value
System.Windows.Forms.Design (4)
System\Drawing\Design\ContentAlignmentEditor.ContentUI.cs (1)
453=> Align = Value is ContentAlignment contentAligment ? contentAligment : ContentAlignment.MiddleLeft;
System\Drawing\Design\ContentAlignmentEditor.cs (1)
30value = _contentUI.Value;
System\Windows\Forms\Design\DockEditor.cs (1)
28value = _dockUI.Value;
System\Windows\Forms\Design\DockEditor.DockUI.cs (1)
287DockStyle = Value is DockStyle dockStyle ? dockStyle : DockStyle.None;