MenuItem.OnClick(EventArgs) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Click 이벤트를 발생시킵니다.
protected:
virtual void OnClick(EventArgs ^ e);
protected virtual void OnClick (EventArgs e);
abstract member OnClick : EventArgs -> unit
override this.OnClick : EventArgs -> unit
Protected Overridable Sub OnClick (e As EventArgs)
매개 변수
예제
다음 코드 예제에 사용 하는 방법을 보여 줍니다.는 Click 수행 하는 이벤트를 작업 하는 경우는 MenuItem 를 클릭 합니다. 이 예에서는 만듭니다는 MainMenu 호출 mainMenu1
두 개 추가 MenuItem 개체 topMenuItem
(File
) 및 menuItem1
(Open
). 그런 다음 연결 합니다 Click
이벤트를는 menuItem1_Click
이벤트 처리기입니다. 클릭할 때 합니다 Open
메뉴 항목을 OpenFileDialog 초기화 되 고 표시 합니다. 만든이 예제는 Form 라는 Form1
합니다.
public:
void CreateMyMenu()
{
// Create a main menu object.
MainMenu^ mainMenu1 = gcnew MainMenu;
// Create empty menu item objects.
MenuItem^ topMenuItem = gcnew MenuItem;
MenuItem^ menuItem1 = gcnew MenuItem;
// Set the caption of the menu items.
topMenuItem->Text = "&File";
menuItem1->Text = "&Open";
// Add the menu items to the main menu.
topMenuItem->MenuItems->Add( menuItem1 );
mainMenu1->MenuItems->Add( topMenuItem );
// Add functionality to the menu items using the Click event.
menuItem1->Click += gcnew System::EventHandler( this, &Form1::menuItem1_Click );
// Assign mainMenu1 to the form.
this->Menu = mainMenu1;
}
private:
void menuItem1_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
// Create a new OpenFileDialog and display it.
OpenFileDialog^ fd = gcnew OpenFileDialog;
fd->DefaultExt = "*.";
fd->ShowDialog();
}
public void CreateMyMenu()
{
// Create a main menu object.
MainMenu mainMenu1 = new MainMenu();
// Create empty menu item objects.
MenuItem topMenuItem = new MenuItem();
MenuItem menuItem1 = new MenuItem();
// Set the caption of the menu items.
topMenuItem.Text = "&File";
menuItem1.Text = "&Open";
// Add the menu items to the main menu.
topMenuItem.MenuItems.Add(menuItem1);
mainMenu1.MenuItems.Add(topMenuItem);
// Add functionality to the menu items using the Click event.
menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
// Assign mainMenu1 to the form.
this.Menu=mainMenu1;
}
private void menuItem1_Click(object sender, System.EventArgs e)
{
// Create a new OpenFileDialog and display it.
OpenFileDialog fd = new OpenFileDialog();
fd.DefaultExt = "*.*";
fd.ShowDialog();
}
Public Sub CreateMyMenu()
' Create a main menu object.
Dim mainMenu1 As New MainMenu()
' Create empty menu item objects.
Dim topMenuItem As New MenuItem()
Dim menuItem1 As New MenuItem()
' Set the caption of the menu items.
topMenuItem.Text = "&File"
menuItem1.Text = "&Open"
' Add the menu items to the main menu.
topMenuItem.MenuItems.Add(menuItem1)
mainMenu1.MenuItems.Add(topMenuItem)
' Add functionality to the menu items using the Click event.
AddHandler menuItem1.Click, AddressOf Me.menuItem1_Click
' Assign mainMenu1 to the form.
Me.Menu = mainMenu1
End Sub
Private Sub menuItem1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
' Create a new OpenFileDialog and display it.
Dim fd As New OpenFileDialog()
fd.DefaultExt = "*.*"
fd.ShowDialog()
End Sub
설명
이벤트가 발생하면 대리자를 통해 이벤트 처리기가 호출됩니다. 자세한 내용은 이벤트 처리 및 발생합니다.
상속자 참고
재정의 하는 경우 OnClick(EventArgs) 파생된 클래스에서 호출 해야 기본 클래스의 OnClick(EventArgs) 메서드.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET