11 writes to Visible
System.Windows.Forms (11)
winforms\Managed\System\WinForms\ToolStripDropDown.cs (7)
1167this.Visible = false; 1184this.Visible = false; 1531this.Visible = false; 1557Visible = false; 2188toplevel.Visible = false; 2197dropDown.Visible = false; 2208dropDown.Visible = false;
winforms\Managed\System\WinForms\ToolStripDropDownItem.cs (1)
419DropDown.Visible = false;
winforms\Managed\System\WinForms\ToolStripManager.cs (2)
1007activeToolStripDropDown.Visible = false; 1090activeDropDown.Visible = false;
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
787dropDown.Visible = value;
26 references to Visible
System.Windows.Forms (26)
winforms\Managed\System\WinForms\MDIControlStrip.cs (1)
245if (HasDropDownItems && DropDown.Visible) {
winforms\Managed\System\WinForms\ToolStrip.cs (1)
2189||!this.OverflowButton.DropDown.Visible
winforms\Managed\System\WinForms\ToolStripDropDown.cs (5)
1368|| (dismissingItem is ToolStripSplitButton && !dismissingItem.DropDown.Visible) // clicking on the split button button dismisses 1582if (AutoClose && Visible) { 1657if (Visible) { 1661if (Visible) { 2142if (this.Visible) {
winforms\Managed\System\WinForms\ToolStripDropDownButton.cs (1)
128if (DropDown.Visible) {
winforms\Managed\System\WinForms\ToolStripDropDownItem.cs (10)
164if (HasDropDownItems && DropDown.Visible) { 283return DropDown.OwnerItem == this && DropDown.Visible; 418if (this.dropDown != null && this.dropDown.Visible) { 439if (this.dropDown != null && this.dropDown.Visible) 449if (DropDown.Visible) { 677if (this.dropDown == null || (!this.dropDown.Visible)) { 686if (this.dropDown != null && !this.dropDown.Visible) { 831return !((ToolStripDropDown)owner.Owner).Visible; 842if (owner != null && owner.DropDown != null && owner.DropDown.Visible) { 849return owner.DropDown.Visible ? UnsafeNativeMethods.ExpandCollapseState.Expanded : UnsafeNativeMethods.ExpandCollapseState.Collapsed;
winforms\Managed\System\WinForms\ToolStripMenuItem.cs (1)
967showDropDown = !DropDown.Visible;
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
781return dropDown.Visible;
winforms\Managed\System\WinForms\ToolStripSplitButton.cs (6)
206return DropDown.Visible != true; 234return DropDown.Visible; 517if (!DropDown.Visible) { 545if (DropDown.Visible) { 844if (ownerItem != null && ownerItem.DropDown != null && ownerItem.DropDown.Visible) { 851return ownerItem.DropDown.Visible ? UnsafeNativeMethods.ExpandCollapseState.Expanded : UnsafeNativeMethods.ExpandCollapseState.Collapsed;