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