初始化
This commit is contained in:
15
RCU-10/RCU/Dialog1.vb
Normal file
15
RCU-10/RCU/Dialog1.vb
Normal file
@@ -0,0 +1,15 @@
|
||||
Imports System.Windows.Forms
|
||||
|
||||
Public Class Dialog1
|
||||
|
||||
Private Sub OK_Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK_Button.Click
|
||||
Me.DialogResult = System.Windows.Forms.DialogResult.OK
|
||||
Me.Close()
|
||||
End Sub
|
||||
|
||||
Private Sub Cancel_Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cancel_Button.Click
|
||||
Me.DialogResult = System.Windows.Forms.DialogResult.Cancel
|
||||
Me.Close()
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
Reference in New Issue
Block a user