C#中,如何在一个窗口中调用另一个窗口中TextBox里已有的值?
让Form1里面textBox3的值显示到Form3里面的textBox1里面。要具体代码。谢谢!!!!!!!!...
让Form1里面textBox3的值显示到Form3里面的textBox1里面。要具体代码。谢谢!!!!!!!!
展开
3个回答
展开全部
1)在Form3的后台代码
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 WindowsFormsApplication4
{
public partial class Form3 : Form
{
public Form3()
{
InitializeComponent();
}
public Form3(string text)
: this()
{
textBox1.Text = text;
}
}
}
2)在Form1中,假设点击button1显示Form3,后台代码
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 WindowsFormsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form3 f3 = new Form3(textBox3.Text);
f3.Show();
}
}
}
展开全部
最简单的办法,在form1中设置一个public
string
的变量记录textbox中的值,这样就可以在form2中直接访问form1中的这个变量
string
的变量记录textbox中的值,这样就可以在form2中直接访问form1中的这个变量
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你想在什么时候form3里的textbox才显示form1里那个textbox的值。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询