ToolStripDropDown.Close Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Closes the ToolStripDropDown control.
Overloads
Close(ToolStripDropDownCloseReason) |
Closes the ToolStripDropDown control for the specified reason. |
Close() |
Closes the ToolStripDropDown control. |
Close(ToolStripDropDownCloseReason)
Closes the ToolStripDropDown control for the specified reason.
public:
void Close(System::Windows::Forms::ToolStripDropDownCloseReason reason);
public void Close (System.Windows.Forms.ToolStripDropDownCloseReason reason);
member this.Close : System.Windows.Forms.ToolStripDropDownCloseReason -> unit
Public Sub Close (reason As ToolStripDropDownCloseReason)
Parameters
- reason
- ToolStripDropDownCloseReason
One of the ToolStripDropDownCloseReason values.
Examples
The following code example demonstrates how to specify a close reason when explicitly closing a ToolStripDropDown control with the Close method.
// This method explicitly closes the ToolStripDropDown control
// and specifies the reason for closing as CloseCalled.
private void closeButton_Click(object sender, EventArgs e)
{
this.contextMenuStrip1.Close(ToolStripDropDownCloseReason.CloseCalled);
}
' This method explicitly closes the ToolStripDropDown control
' and specifies the reason for closing as CloseCalled.
Private Sub closeButton_Click(sender As Object, e As EventArgs) Handles closeButton.Click
Me.contextMenuStrip1.Close(ToolStripDropDownCloseReason.CloseCalled)
End Sub
Remarks
Use the Close method to close a ToolStripDropDown control under specific conditions, such as when an application is started or an item is selected by clicking the control, if the focus changes, or if specified keyboard action occurs.
See also
Applies to
Close()
Closes the ToolStripDropDown control.
public:
void Close();
public void Close ();
member this.Close : unit -> unit
Public Sub Close ()