复制之前封装好的.dll文件,粘贴到你想调用的工程下面,一般就是你工程的debug/release文件夹下面,然后再在代码中,解决方案管理器中下面的右击——“引用”——“添加引用”——“浏览”——找到你刚才粘贴到的路径,选择dll,确定。
1、新建-项目-类库;
2、创建一个.cs文件 写入代码,例如:建立一个WindowsTestApp02窗体;
运行文件,就会在Debug目录下生成WindowsTestApp02.dll文件
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using WindowsTestApp02;
namespace AliWorkbenchProgram
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Test02 form1 = new Test02();//被调用窗口名
//CreateMDIControl(new test1());
form1.Show();
}
}
}
调用成功!
1、添加新项目
2.3.将生成的DLL复制到测试项目的.\bin\Debug下
2.4.右键点击“引用”,再点“添加引用”