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
下一篇:C#实现发送邮件的三种方法
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:Winform启动另一个项目传值的方法
文章链接:http://soscw.com/index.php/essay/78704.html
文章标题:Winform启动另一个项目传值的方法
文章链接:http://soscw.com/index.php/essay/78704.html
评论
亲,登录后才可以留言!