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