Winform启动另一个项目传值的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Winform启动另一个项目传值的方法相关的知识,希望对你有一定的参考价值。
本文实例讲述了Winform启动另一个项目传值的方法。分享给大家供大家参考。具体如下:
背景:从A项目中登陆后,跳转到B项目的某个页面(B不再登陆)。
A项目启动进程:
代码如下:
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
);
/// <summary>
/// 加载相应的应用程序
/// </summary>
private void StartApplication(string projname, string arg)
{
ShellExecute(IntPtr.Zero, “Open”, projname, arg, Application.StartupPath + @”\”, 1);
}
#endregion
private void btnJump_Click(object sender, EventArgs e)
{
StartApplication(“B”, “Doctor,00045,14092701”);//从这里跳转
}
除声明外,跑步客文章均为原创,转载请以链接形式标明本文地址
Winform启动另一个项目传值的方法
本文地址: http://www.paobuke.com/develop/c-develop/pbk23318.html
Winform启动另一个项目传值的方法
本文地址: http://www.paobuke.com/develop/c-develop/pbk23318.html
相关内容
C#深度优先搜索算法
利用WCF双工模式实现即时通讯
C# 设计模式系列教程-建造者模式
C#异步绑定数据实现方法
关于ASP网页无法打开的解决方案
C#使用Matrix执行缩放的方法
C#图像重新着色的方法
C# 生成随机数的代码
以上是关于Winform启动另一个项目传值的方法的主要内容,如果未能解决你的问题,请参考以下文章