按钮单击在Windows窗体应用程序Ms Visual Studio 2012中打开不同的应用程序

时间:2015-05-22 04:37:36

标签: .net forms button

我在VS2012中创建了一个Windows窗体应用程序。我的表单中有一个按钮功能。单击按钮后,如何打开其他应用程序(单独的项目)?

1 个答案:

答案 0 :(得分:0)

    Application.Run(new MyForm());
 should be your solution where MyForm is the form you want to open.