form1中有textBox1和textBox2,还有个DataGrid,我已经把DataGrid中选中行的,2个字段值赋值给了 textBox1和textBox2 ,利用form1中一按钮 "修改" 来弹出新窗体form2,form2要实现 检索 并修改 满足数据库中某表2字段值分别等于 textBox1和textBox2,form2中的
textBox1和textBox2 如何能从 form1中把值取过来!
form1 把两个值赋给定义的两个字段 _strText1, _strText2 ,通过定属性传递字段值
public string _strText1;
public string _strText2;
public string StrText1
{
get
{
return _strText1;
}
set
{
_strText1 = value;
}
}
public string StrText2
{
get
{
return _strText2;
}
set
{
_strText2 = value;
}
}
from2 窗口:
from2 myfrm = new from2();
private void from2_Load(object sender, EventArgs e)
{
textBox1.Text = myfrm.StrText1;
textBox2.Text = myfrm.StrText2;
}
[此贴子已经被作者于2007-7-3 15:19:39编辑过]