ToolStripDropDown.AutoClose Property
.NET Framework 3.0
Gets or sets a value indicating whether the ToolStripDropDown control should automatically close when it has lost activation.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Assembly: System.Windows.Forms (in system.windows.forms.dll)
'Declaration Public Property AutoClose As Boolean 'Usage Dim instance As ToolStripDropDown Dim value As Boolean value = instance.AutoClose instance.AutoClose = value
/** @property */ public boolean get_AutoClose () /** @property */ public void set_AutoClose (boolean value)
public function get AutoClose () : boolean public function set AutoClose (value : boolean)
Not applicable.
Property Value
true if the ToolStripDropDown control automatically closes; otherwise, false. The default is true.If you want a ToolStripDropDown that always stays open, set AutoClose to false.
Note: |
|---|
| Consider handling the Closing event instead of setting the AutoClose property. Inspect the CloseReason field in your Closing handler to specify custom closing logic. |
- UIPermission to use all windows and user input events without restriction. Associated enumeration: the AllWindows value of System.Security.Permissions.UIPermissionWindow
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Note: