C#如何用FORM1显示FORM2,然后将FORM2中的TEXTBOX中的值返回给FORM1?
展开全部
form1 里面建个label1 和一个button1
解决方案资源管理器
添加个新建项 windows窗体 叫FORM2
里面放个 TEXTBOX1和一个button1
下面是代码
form1里面
---------------------
// button1_Click事件
private void button1_Click(object sender, EventArgs e)
{
{
Form2 fm2 = new Form2();
fm2.ShowDialog();
{
label1.Text = fm2.Str;
}
}
}
-----------------
form2里面
-------------
// 添加个属性
private string _str;
public string Str
{
get { return this._str; }
set { this._str = value; }
}
//button_click 事件
private void button1_Click(object sender, EventArgs e)
{
Str = textBox1.Text;
this.Close();
}
------------
这样可能会有安全性的问题 不过 一般是够用了
希望能帮上你
解决方案资源管理器
添加个新建项 windows窗体 叫FORM2
里面放个 TEXTBOX1和一个button1
下面是代码
form1里面
---------------------
// button1_Click事件
private void button1_Click(object sender, EventArgs e)
{
{
Form2 fm2 = new Form2();
fm2.ShowDialog();
{
label1.Text = fm2.Str;
}
}
}
-----------------
form2里面
-------------
// 添加个属性
private string _str;
public string Str
{
get { return this._str; }
set { this._str = value; }
}
//button_click 事件
private void button1_Click(object sender, EventArgs e)
{
Str = textBox1.Text;
this.Close();
}
------------
这样可能会有安全性的问题 不过 一般是够用了
希望能帮上你
展开全部
form1
里面建个label1
和一个button1
解决方案资源管理器
添加个新建项
windows窗体
叫FORM2
里面放个
TEXTBOX1和一个button1
下面是代码
form1里面
---------------------
//
button1_Click事件
private
void
button1_Click(object
sender,
EventArgs
e)
{
{
Form2
fm2
=
new
Form2();
fm2.ShowDialog();
{
label1.Text
=
fm2.Str;
}
}
}
-----------------
form2里面
-------------
//
添加个属性
private
string
_str;
public
string
Str
{
get
{
return
this._str;
}
set
{
this._str
=
value;
}
}
//button_click
事件
private
void
button1_Click(object
sender,
EventArgs
e)
{
Str
=
textBox1.Text;
this.Close();
}
------------
这样可能会有安全性的问题
不过
一般是够用了
希望能帮上你
里面建个label1
和一个button1
解决方案资源管理器
添加个新建项
windows窗体
叫FORM2
里面放个
TEXTBOX1和一个button1
下面是代码
form1里面
---------------------
//
button1_Click事件
private
void
button1_Click(object
sender,
EventArgs
e)
{
{
Form2
fm2
=
new
Form2();
fm2.ShowDialog();
{
label1.Text
=
fm2.Str;
}
}
}
-----------------
form2里面
-------------
//
添加个属性
private
string
_str;
public
string
Str
{
get
{
return
this._str;
}
set
{
this._str
=
value;
}
}
//button_click
事件
private
void
button1_Click(object
sender,
EventArgs
e)
{
Str
=
textBox1.Text;
this.Close();
}
------------
这样可能会有安全性的问题
不过
一般是够用了
希望能帮上你
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
MDI 多文档界面
Form1.IsMdiContainer属性值设为true
Form2.IsMdiChild属性值设为true
说来话长
Form1.IsMdiContainer属性值设为true
Form2.IsMdiChild属性值设为true
说来话长
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询