方法有很多种,这里介绍项目中使用的两种 一.通过委托+事件的方法进行传值 (点击Form2中的button1按钮,将会把Form2中的textbox.text 传给Form1中的 lable.text) 先上效果图 以下是代码 public partial class Form2 : Form { public Form2() { InitializeComponent(); } public delegate void SendDataInvoke(string value); public…