标签: .net forms button
我在VS2012中创建了一个Windows窗体应用程序。我的表单中有一个按钮功能。单击按钮后,如何打开其他应用程序(单独的项目)?
答案 0 :(得分:0)
Application.Run(new MyForm()); should be your solution where MyForm is the form you want to open.