12 references to ActiveDropDowns
System.Windows.Forms (12)
winforms\Managed\System\WinForms\MenuStrip.cs (1)
269if (m.Msg == NativeMethods.WM_MOUSEACTIVATE && (ActiveDropDowns.Count == 0)) {
winforms\Managed\System\WinForms\ToolStripDropDown.cs (9)
1296this.ActiveDropDowns.Count == 0) { 1826OwnerToolStrip.ActiveDropDowns.Add(this); 1944OwnerToolStrip.ActiveDropDowns.Remove(this); 1946ActiveDropDowns.Clear(); 2191Debug.WriteLineIf((DropDownActivateDebug.TraceVerbose && ActiveDropDowns.Count > 0), "Dismiss children called - COUNT " + ActiveDropDowns.Count + " \r\n" + new StackTrace().ToString()); 2192int count = ActiveDropDowns.Count; 2195ToolStripDropDown dropDown = ActiveDropDowns[0] as ToolStripDropDown; 2202ArrayList dropDowns = ActiveDropDowns.Clone() as ArrayList;
winforms\Managed\System\WinForms\ToolStripMenuItem.cs (2)
1411if (toolStrip.IsDropDown && toolStrip.ActiveDropDowns.Count > 0) { 1412ToolStripDropDown dropDown = toolStrip.ActiveDropDowns[0] as ToolStripDropDown;