2 writes to dropDown
System.Windows.Forms (2)
winforms\Managed\System\WinForms\ToolStripDropDownItem.cs (2)
87dropDown = value; 373dropDown = null;
49 references to dropDown
System.Windows.Forms (49)
winforms\Managed\System\WinForms\ToolStripDropDownItem.cs (49)
64if (dropDown == null) { 68dropDown.SetAutoGeneratedInternal(true); 72dropDown.ShowItemToolTips = ParentInternal.ShowItemToolTips; 75return dropDown; 78if (dropDown != value) { 80if (dropDown != null) { 81dropDown.Opened -= new EventHandler(DropDown_Opened); 82dropDown.Closed -= new ToolStripDropDownClosedEventHandler(DropDown_Closed); 83dropDown.ItemClicked -= new ToolStripItemClickedEventHandler(DropDown_ItemClicked); 84dropDown.UnassignDropDownItem(); 88if (dropDown != null) { 89dropDown.Opened += new EventHandler(DropDown_Opened); 90dropDown.Closed += new ToolStripDropDownClosedEventHandler(DropDown_Closed); 91dropDown.ItemClicked += new ToolStripItemClickedEventHandler(DropDown_ItemClicked); 92dropDown.AssignToDropDownItem(); 266return (dropDown != null) && dropDown.HasVisibleItems; 273get { return dropDown != null; } 281if (dropDown != null) { 365if (this.dropDown != null) { 366dropDown.Opened -= new EventHandler(DropDown_Opened); 367dropDown.Closed -= new ToolStripDropDownClosedEventHandler(DropDown_Closed); 368dropDown.ItemClicked -= new ToolStripItemClickedEventHandler(DropDown_ItemClicked); 370if (disposing && dropDown.IsAutoGenerated) { 372dropDown.Dispose(); 418if (this.dropDown != null && this.dropDown.Visible) { 429if (dropDown != null) { 430dropDown.OnOwnerItemFontChanged(EventArgs.Empty); 439if (this.dropDown != null && this.dropDown.Visible) 441this.dropDown.Bounds = GetDropDownBounds(DropDownDirection); 666ToolStripDropDownMenu menu = this.dropDown as ToolStripDropDownMenu; 677if (this.dropDown == null || (!this.dropDown.Visible)) { 686if (this.dropDown != null && !this.dropDown.Visible) { 688if (this.dropDown.IsAutoGenerated && this.DropDownItems.Count <= 0) { 696this.dropDown.OwnerItem = this; 697this.dropDown.Location = DropDownLocation; 698this.dropDown.Show(); 709return dropDown != null && !dropDown.IsAutoGenerated; 717return (dropDown != null && dropDown.IsAutoGenerated); 741if (item.dropDown != null) { 744item.dropDown.deviceDpi = newDpi; 745item.dropDown.ResetScaling(newDpi); 761if (((ToolStripDropDownItem)childItem).dropDown != null) {