为了账号安全,请及时绑定邮箱和手机立即绑定

Windows Forms在父窗体中查找控件

Windows Forms在父窗体中查找控件

慕森卡 2018-09-12 05:06:50
父窗体事件            frmPingKongVod frmChild = new frmPingKongVod();            frmChild.Owner = this;            frmChild.ShowDialog();            frmChild.Dispose();返给父窗体的txtImagesA赋值TextBox控件放在tabControl1中((TextBox)((System.Windows.Forms.TabControl)frmValue.Controls["tabControl1"]).Controls["txtImagesA"]).Text='' 大家帮我看一下这个有什么错 先谢了
查看完整描述

2 回答

?
拉丁的传说

TA贡献1789条经验 获得超8个赞

在做类型转换的时候,安全起见最好是判断下转换后的对象是否为null:

TextBox txt=((TextBox)(System.Windows.Forms.TabControl)frmValue.Controls["tabControl1"]).Controls["txtImagesA"];

if(txt!=null)

{

txt.Text="";

}


查看完整回答
反对 回复 2018-09-19
?
神不在的星期二

TA贡献1963条经验 获得超6个赞

frmPingKongVod frmChild = new frmPingKongVod();
            frmChild.Owner = this;
            frmChild.ShowDialog();

            string strResultValue = frmChild.GetValue(); //新增方法,


            frmChild.Dispose();


查看完整回答
反对 回复 2018-09-19
  • 2 回答
  • 0 关注
  • 522 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信