在类库或winform项目中打开另一个winform项目窗体的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在类库或winform项目中打开另一个winform项目窗体的方法相关的知识,希望对你有一定的参考价值。
本文实例讲述了在类库或winform项目中打开另一个winform项目窗体的方法。分享给大家供大家参考。具体如下:
一、问题:
假设类库或winform项目为A,另一个winform项目为B.那麽在A中添加一个接口,里面有一个Show方法,然后在B中写一个类b继承这个接口,并重写这个方法,具体内容为弹出某个窗体.然后在A中另一个类a中实例化B中的b类,并把它赋给A中的接口,然后调用接口的Show方法就可以弹出B中指定的窗体.
需要注意的是项目A和项目B需要互相引入对方的EXE或DLL文件.
二、实现代码:
代码如下:
{
public interface IShow
{
void Show();
}
}
namespace EMRApp
{
public class CShow:IShow
{
public void Show()
{
Form frm = new Form();
frm.Text = “测试EMRAPP窗口”;
frm.Show();
}
}
}
namespace His
{
public class CTransfShow
{
public void aaa()
{
IShow ish = new CShow();
ish.Show(); //here
}
}
}
namespace His
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
CTransfShow ct = new CTransfShow();
ct.aaa();
}
}
}
在类库或winform项目中打开另一个winform项目窗体的方法
本文地址: http://www.paobuke.com/develop/c-develop/pbk23316.html
相关内容
以上是关于在类库或winform项目中打开另一个winform项目窗体的方法的主要内容,如果未能解决你的问题,请参考以下文章
如何在类库项目类型中使用 ConfigurationManager 类
在类库项目的基类中定义 HttpClient 实例的最佳方法是啥?