2 writes to btnDialog
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
306btnDialog = new DropDownButton(); 1171btnDialog = null;
16 references to btnDialog
System.Windows.Forms (16)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (16)
299if (btnDialog == null) { 307btnDialog.BackColor = SystemColors.Control; 308btnDialog.ForeColor = SystemColors.ControlText; 309btnDialog.TabIndex = 3; 310btnDialog.Image = CreateResizedBitmap("dotdotdot.ico", DOTDOTDOT_ICONWIDTH, DOTDOTDOT_ICONHEIGHT); 311btnDialog.Click += new EventHandler(this.OnBtnClick); 312btnDialog.KeyDown += new KeyEventHandler(this.OnBtnKeyDown); 313btnDialog.GotFocus += new EventHandler(OnDropDownButtonGotFocus); 314btnDialog.LostFocus += new EventHandler(this.OnChildLostFocus); 315btnDialog.Size = DpiHelper.EnableDpiChangedHighDpiImprovements ? new Size(SystemInformation.VerticalScrollBarArrowHeightForDpi(this.deviceDpi), RowHeight) : new Size(SystemInformation.VerticalScrollBarArrowHeight, RowHeight); 316CommonEditorSetup(btnDialog); 318return btnDialog; 1169if (btnDialog != null) { 1170btnDialog.Dispose(); 5192if (btnDialog != null) { 5195btnDialog.Image = CreateResizedBitmap("dotdotdot.ico", DOTDOTDOT_ICONWIDTH, DOTDOTDOT_ICONHEIGHT);