2 writes to btnDropDown
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
280btnDropDown = new DropDownButton(); 1166btnDropDown = null;
18 references to btnDropDown
System.Windows.Forms (18)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (18)
273if (btnDropDown == null) { 281btnDropDown.UseComboBoxTheme = true; 283btnDropDown.Image = bitmap; 284btnDropDown.BackColor = SystemColors.Control; 285btnDropDown.ForeColor = SystemColors.ControlText; 286btnDropDown.Click += new EventHandler(this.OnBtnClick); 287btnDropDown.GotFocus += new EventHandler(OnDropDownButtonGotFocus); 288btnDropDown.LostFocus += new EventHandler(this.OnChildLostFocus); 289btnDropDown.TabIndex = 2; 290CommonEditorSetup(btnDropDown); 291btnDropDown.Size = DpiHelper.EnableDpiChangedHighDpiImprovements ? new Size(SystemInformation.VerticalScrollBarArrowHeightForDpi(this.deviceDpi), RowHeight) : new Size(SystemInformation.VerticalScrollBarArrowHeight, RowHeight); 293return btnDropDown; 1164if (btnDropDown != null) { 1165btnDropDown.Dispose(); 5185if (btnDropDown != null) { 5187btnDropDown.Size = new Size(SystemInformation.VerticalScrollBarArrowHeightForDpi(this.deviceDpi), RowHeight); 5190btnDropDown.Size = new Size(SystemInformation.VerticalScrollBarArrowHeight, RowHeight); 5199btnDropDown.Image = CreateResizedBitmap("Arrow.ico", DOWNARROW_ICONWIDTH, DOWNARROW_ICONHEIGHT);