8 writes to MenuAutoExpand
System.Windows.Forms (8)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (3)
128MenuAutoExpand = false; 3325MenuAutoExpand = true; 3982MenuAutoExpand = false;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (3)
912toplevelOwnerToolStrip?.MenuAutoExpand = false; 1095MenuAutoExpand = true; 1262OwnerToolStrip.MenuAutoExpand = false;
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
2476ParentInternal.MenuAutoExpand = autoExpand;
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (1)
823ParentInternal?.MenuAutoExpand = true;
3 references to MenuAutoExpand
System.Windows.Forms (3)
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
2464bool autoExpand = ParentInternal.MenuAutoExpand;
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (2)
749if (!Enabled || ParentInternal is null || !ParentInternal.MenuAutoExpand || !HasDropDownItems) 900if (ParentInternal is not null && ParentInternal.MenuAutoExpand && Selected)