如果传递了隐藏表单的参数,我需要添加一个命令行选项来隐藏 mi 应用程序...
它是一个 Windows 窗体。
这是我尝试过的,但表格没有隐藏:
Private Sub Parse_Arguments()
For I As Integer = 0 To My.Application.CommandLineArgs.Count - 1
If My.Application.CommandLineArgs.Item(I).ToLower = "/s" Then
Me.Visible = False
Me.Hide()
'Me.Visible = True
End If
Next
End Sub