Form1里textBox输入字符后,点击Form2的button,Form1的textBox要在Form2以MessageBox.Show()现实传递值

usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Da... 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;namespace WindowsFormsApplication12{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Form2 myfrom2 = new Form2(); myfrom2.Show(); } }}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;namespace WindowsFormsApplication12{ public partial class Form2 : Form { public Form2() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Form1 myform1 = new Form1(); MessageBox.Show(myform1.textBox1.Text); } }}但是最后MessageBox.Show()现实的是Form1的textbox 属性的值。而不是在textbox里输入的值,请问这是为什么? 展开
 我来答
雪V歌
2017-12-03 · 知道合伙人数码行家
雪V歌
知道合伙人数码行家
采纳数:78696 获赞数:222928
泉州兴瑞发公司2015-2017最佳优秀员工。

向TA提问 私信TA
展开全部
在form1中的所有textbox的事件中添加以下代码:
Form2 frm=new Form2();
frm.setLabelText(textbox.Text);

在Form2中添加公共方法setLabelText(string text)
添加代码:this.labl.Text=text;
追问
麻烦能帮忙写一个完整的代码么?
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式