45 lines
1.0 KiB
VB.net
45 lines
1.0 KiB
VB.net
Imports System.Windows.Forms
|
|
|
|
Public Class FrmMACBindingResults
|
|
|
|
|
|
|
|
''' <summary>
|
|
''' 重试按键
|
|
''' </summary>
|
|
''' <param name="sender"></param>
|
|
''' <param name="e"></param>
|
|
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
|
|
_isMACRetry = True
|
|
Me.Close()
|
|
End Sub
|
|
|
|
|
|
''' <summary>
|
|
''' 解绑
|
|
''' </summary>
|
|
''' <param name="sender"></param>
|
|
''' <param name="e"></param>
|
|
Private Sub OK_Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK_Button.Click
|
|
_isMACUnbundle = True
|
|
Me.DialogResult = System.Windows.Forms.DialogResult.OK
|
|
Me.Close()
|
|
End Sub
|
|
|
|
|
|
''' <summary>
|
|
''' 取消
|
|
''' </summary>
|
|
''' <param name="sender"></param>
|
|
''' <param name="e"></param>
|
|
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
|