在C#中如何把form2中的textBox1中的值赋给form1中的textBox1?
在C#中如何把form2中的textBox1中的值赋给form1中的textBox1?比如在form2中的textBox1中输入数值,将它从textBox2中显示出来...
在C#中如何把form2中的textBox1中的值赋给form1中的textBox1?比如在form2中的textBox1中输入数值,将它从textBox2中显示出来
展开
3个回答
展开全部
Form1中的代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 两个窗口的传值
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_MouseDoubleClick(object sender, MouseEventArgs e)
{
Form2 form2 = new Form2(textBox1 ); // 传递textBox1
form2.Show();
}
}
}
Form2中的代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 两个窗口的传值
{
public partial class Form2 : Form
{
public TextBox textbox2 = null; 定义一个textBox来接受Form1的textBox1
public Form2( TextBox b)//修改构造函数来
{
textbox2 = b;
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)//在textBox1的内容改变的时候调用函数
{
textbox2 .Text = textBox1.Text;
}
}
}
采纳我哦!!
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 两个窗口的传值
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_MouseDoubleClick(object sender, MouseEventArgs e)
{
Form2 form2 = new Form2(textBox1 ); // 传递textBox1
form2.Show();
}
}
}
Form2中的代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 两个窗口的传值
{
public partial class Form2 : Form
{
public TextBox textbox2 = null; 定义一个textBox来接受Form1的textBox1
public Form2( TextBox b)//修改构造函数来
{
textbox2 = b;
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)//在textBox1的内容改变的时候调用函数
{
textbox2 .Text = textBox1.Text;
}
}
}
采纳我哦!!
展开全部
Form1中的代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 两个窗口的传值
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_MouseDoubleClick(object sender, MouseEventArgs e)
{
Form2 form2 = new Form2(textBox1 ); // 传递textBox1
form2.Show();
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 两个窗口的传值
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_MouseDoubleClick(object sender, MouseEventArgs e)
{
Form2 form2 = new Form2(textBox1 ); // 传递textBox1
form2.Show();
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用代理事件,就可以实现窗口同步(同时)交换数据,具体地您可以看一下如何写代理....
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询