2 writes to listBox
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
389
listBox
= new GridViewListBox(this);
1138
listBox
= null;
13 references to listBox
System.Windows.Forms (13)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (13)
382
if (
listBox
== null) {
390
listBox
.DrawMode = DrawMode.OwnerDrawFixed;
392
listBox
.MouseUp += new MouseEventHandler(this.OnListMouseUp);
393
listBox
.DrawItem += new DrawItemEventHandler(this.OnListDrawItem);
394
listBox
.SelectedIndexChanged += new EventHandler(this.OnListChange);
395
listBox
.KeyDown += new KeyEventHandler(this.OnListKeyDown);
396
listBox
.LostFocus += new EventHandler(this.OnChildLostFocus);
397
listBox
.Visible = true;
398
listBox
.ItemHeight = RowHeight;
400
return
listBox
;
1135
if (
listBox
!= null)
listBox
.Dispose();
5182
if (
listBox
!= null) {