2 writes to _dropDownButton
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (2)
206
_dropDownButton
= new()
1014
_dropDownButton
= null;
18 references to _dropDownButton
System.Windows.Forms (18)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (18)
199
if (
_dropDownButton
is not null)
201
return
_dropDownButton
;
219
_dropDownButton
.Image = bitmap;
220
_dropDownButton
.BackColor = SystemColors.Control;
221
_dropDownButton
.ForeColor = SystemColors.ControlText;
222
_dropDownButton
.Click += OnButtonClick;
223
_dropDownButton
.GotFocus += OnDropDownButtonGotFocus;
224
_dropDownButton
.LostFocus += OnChildLostFocus;
225
_dropDownButton
.TabIndex = 2;
227
CommonEditorSetup(
_dropDownButton
);
229
_dropDownButton
.Size = ScaleHelper.IsScalingRequirementMet
233
return
_dropDownButton
;
1013
_dropDownButton
?.Dispose();
4798
_dropDownButton
?.ReleaseUiaProvider(HWND.Null);
5166
if (
_dropDownButton
is not null)
5171
_dropDownButton
.Size = new(SystemInformation.VerticalScrollBarArrowHeightForDpi(DeviceDpiInternal), RowHeight);
5175
_dropDownButton
.Size = new(SystemInformation.VerticalScrollBarArrowHeight, RowHeight);
5189
_dropDownButton
.Image = CreateResizedBitmap("Arrow", DownArrowIconWidth, DownArrowIconHeight);