Winform启动另一个项目传值的方法

2021-04-24 00:27

阅读:539


public Form1()

{

InitializeComponent();

}

#region 调用进程

[DllImport(“Shell32.dll”)]

private static extern int ShellExecute(

IntPtr hwnd,

string lpOperation,      //多为”open”

string lpFile,           //文件名称

string lpParameters,   //参数

string lpDirectory,      //文件路径

int nShowCmd

);

///

/// 加载相应的应用程序

///

private void StartApplication(string projname, string arg)

{

ShellExecute(IntPtr.Zero, “Open”, projname, arg, Application.StartupPath + @”\”, 1);

}

#endregion


评论


亲,登录后才可以留言!