This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AUTS_OLD/UTS_Core/UTSModule/Project/DlgCreateProject.vb

25 lines
788 B
VB.net
Raw Normal View History

2024-03-11 16:32:52 +08:00
Imports System.Windows.Forms
Namespace UTSModule.Project
Public Class DlgCreateProject
Public Property ProjectName() As String
Private Sub OK_Button_Click(ByVal sender As System.Object, ByVal e As EventArgs) Handles OK_Button.Click
If String.IsNullOrWhiteSpace(CboProjectName.Text) Then
MsgBox($"请输入合法测试项目名称!")
Return
End If
ProjectName = CboProjectName.Text
DialogResult = DialogResult.OK
Close()
End Sub
Private Sub Cancel_Button_Click(ByVal sender As System.Object, ByVal e As EventArgs) Handles Cancel_Button.Click
DialogResult = DialogResult.Cancel
Close()
End Sub
End Class
End Namespace