转到Gitea托管

This commit is contained in:
2026-01-10 14:53:04 +08:00
commit f250d0b46d
225 changed files with 27784 additions and 0 deletions

15
WT-DMS/dlg_Input.vb Normal file
View File

@@ -0,0 +1,15 @@
Imports System.Windows.Forms
Public Class dlg_Input
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