ToolStripDropDown.Closing 이벤트
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ToolStripDropDown 컨트롤이 닫히려고 할 때 발생합니다.
public:
event System::Windows::Forms::ToolStripDropDownClosingEventHandler ^ Closing;
public event System.Windows.Forms.ToolStripDropDownClosingEventHandler Closing;
public event System.Windows.Forms.ToolStripDropDownClosingEventHandler? Closing;
member this.Closing : System.Windows.Forms.ToolStripDropDownClosingEventHandler
Public Custom Event Closing As ToolStripDropDownClosingEventHandler
이벤트 유형
예제
다음 코드 예제를 선택적으로 닫는 ToolStripDropDown 방법을 보여 줍니다는 이벤트를 처리 하 여 Closing 컨트롤
// This method handles the Closing event. The ToolStripDropDown
// control is not allowed to close unless the Done menu item
// is clicked or the Close method is called explicitly.
// The Done menu item is enabled only after both of the other
// menu items have been selected.
private void contextMenuStrip_Closing(
object sender,
ToolStripDropDownClosingEventArgs e)
{
if (e.CloseReason != ToolStripDropDownCloseReason.CloseCalled)
{
if (subItem1ToolStripMenuItem.Checked &&
subItem2ToolStripMenuItem.Checked &&
doneToolStripMenuItem.Enabled)
{
// Reset the state of menu items.
subItem1ToolStripMenuItem.Checked = false;
subItem2ToolStripMenuItem.Checked = false;
doneToolStripMenuItem.Enabled = false;
// Allow the ToolStripDropDown to close.
// Don't cancel the Close operation.
e.Cancel = false;
}
else
{
// Cancel the Close operation to keep the menu open.
e.Cancel = true;
this.toolStripStatusLabel1.Text = "Close canceled";
}
}
}
' This method handles the Closing event. The ToolStripDropDown
' control is not allowed to close unless the Done menu item
' is clicked or the Close method is called explicitly.
' The Done menu item is enabled only after both of the other
' menu items have been selected.
Private Sub contextMenuStrip_Closing(sender As Object, e As ToolStripDropDownClosingEventArgs) Handles contextMenuStrip1.Closing
If e.CloseReason <> ToolStripDropDownCloseReason.CloseCalled Then
If subItem1ToolStripMenuItem.Checked AndAlso subItem2ToolStripMenuItem.Checked AndAlso doneToolStripMenuItem.Enabled Then
' Reset the state of menu items.
subItem1ToolStripMenuItem.Checked = False
subItem2ToolStripMenuItem.Checked = False
doneToolStripMenuItem.Enabled = False
' Allow the ToolStripDropDown to close.
' Don't cancel the Close operation.
e.Cancel = False
Else
' Cancel the Close operation to keep the menu open.
e.Cancel = True
Me.toolStripStatusLabel1.Text = "Close canceled"
End If
End If
End Sub
설명
이벤트 처리에 대한 자세한 내용은 이벤트 처리 및 발생 을 참조하십시오.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET