C#怎么把子窗体中的comboBox1的值能够传到父窗体的toolStrip组件中的textbox中去么?能的话代码怎么写 10
3个回答
展开全部
有两种方法
1、子窗体关闭后将comboBox1的值能够传到父窗体的toolStrip组件中的textbox中去
在子窗体上弄一个public string comstr;
在closing事件中写comstr=comboBox1.text;
父窗体写
form1 f=new form1();
f.showdialog();
textbox1.text=f.comstr;//textbox是父窗体的toolStrip组件中的textbox
2、即使更新(选择comboBox值后马上在父窗体的toolStrip组件中的textbox中显示出更新)
将父窗体的toolStrip组件中的textbox设置为public
在子窗体写
public form1(Form f)
{
this.owen=f;
}
在combobox的textchenged事件中写
((Mainform)this.owen).text1.text=combobox1.text;
主窗体写
form1 f=new form1(this);
f.showdialog();
1、子窗体关闭后将comboBox1的值能够传到父窗体的toolStrip组件中的textbox中去
在子窗体上弄一个public string comstr;
在closing事件中写comstr=comboBox1.text;
父窗体写
form1 f=new form1();
f.showdialog();
textbox1.text=f.comstr;//textbox是父窗体的toolStrip组件中的textbox
2、即使更新(选择comboBox值后马上在父窗体的toolStrip组件中的textbox中显示出更新)
将父窗体的toolStrip组件中的textbox设置为public
在子窗体写
public form1(Form f)
{
this.owen=f;
}
在combobox的textchenged事件中写
((Mainform)this.owen).text1.text=combobox1.text;
主窗体写
form1 f=new form1(this);
f.showdialog();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用事件回调
public FormFather
{
//父窗体调用子窗体的时候
......()
{
FormSun _Form=new Form();
_Form.OnTranstring+=new FormSun.OnTranstring(_FormSun_OnTranstring);//注册事件
_Form.show();
}
void _Form_OnTranstring(string _string)
{
this.textbox.text=_string;
}
}
public FormSun
{
public delegate event Transtring(string _string);//申明委托
public event Transtring OnTranstring; //申明事件
//在你想传值的方法中
........(......)
{
....;
.
.
if(Combox1.selectedText!="");
{
OnTranstring(Combox1.SelectedText);
}
}
}
public FormFather
{
//父窗体调用子窗体的时候
......()
{
FormSun _Form=new Form();
_Form.OnTranstring+=new FormSun.OnTranstring(_FormSun_OnTranstring);//注册事件
_Form.show();
}
void _Form_OnTranstring(string _string)
{
this.textbox.text=_string;
}
}
public FormSun
{
public delegate event Transtring(string _string);//申明委托
public event Transtring OnTranstring; //申明事件
//在你想传值的方法中
........(......)
{
....;
.
.
if(Combox1.selectedText!="");
{
OnTranstring(Combox1.SelectedText);
}
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
3种方式
1、委托事件
2、设置公共静态变量
3、传窗体对象到子类对象
1、委托事件
2、设置公共静态变量
3、传窗体对象到子类对象
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询