猿问

Windows Forms在父窗体中查找控件

父窗体事件

            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='' 大家帮我看一下这个有什么错 先谢了


慕森卡
浏览 523回答 2
2回答

拉丁的传说

在做类型转换的时候,安全起见最好是判断下转换后的对象是否为null:TextBox txt=((TextBox)(System.Windows.Forms.TabControl)frmValue.Controls["tabControl1"]).Controls["txtImagesA"];if(txt!=null){txt.Text="";}

神不在的星期二

frmPingKongVod frmChild = new frmPingKongVod();            frmChild.Owner = this;            frmChild.ShowDialog();            string strResultValue = frmChild.GetValue(); //新增方法,            frmChild.Dispose();
随时随地看视频慕课网APP
我要回答