我无法在VS中设置我的特定表单。
我的项目有三种形式: - Form1, - Form2和 - Form3。
我想打开 Form3 作为启动表单,但无法执行此操作。
我更改 启动来自属性,但它无效。
答案 0 :(得分:1)
重新启动视觉工作室
How to: Choose the Startup Form in a Windows Application
或者在其他代码中
您可以在ApplicationEvents.vb中更改启动表单。
The ApplicationContext.MainForm property可用于设置主窗体。
Public Sub Me_Startup(ByVal sender As Object, ByVal e As ApplicationServices.StartupEventArgs) Handles Me.Startup
Me.ApplicationContext.MainForm = frmLogin
End Sub
答案 1 :(得分:0)
从菜单中,找到Build>清理“项目名称”
如果不起作用,请重新启动visual studio。