클릭 이벤트 만들기
Button 컨트롤은 Visual Basic .NET(VB.NET)에서 사용하는 버튼 유형의 컨트롤입니다.
사용자가 버튼을 클릭할 때 어떤 작업이 수행되도록 할 수 있습니다.
아래의 예제에서는 Button 컨트롤에 클릭 이벤트 핸들러를 추가하는 코드를 보여줍니다.
Source code
Public Class Form1 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load End Sub Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim result As DialogResult = MessageBox.Show("Button을 클릭했습니다", "Title", MessageBoxButtons.YesNo) If result = System.Windows.Forms.DialogResult.Yes Then MessageBox.Show(" YES를 클릭했습니다", "Title", MessageBoxButtons.OK) ' Other Code goes here ElseIf result = System.Windows.Forms.DialogResult.No Then MessageBox.Show(" NO를 클릭했습니다", "Title", MessageBoxButtons.OK) ' Other Code goes here End If End Sub End Class |