父窗体、子窗体关系设置

2020-12-13 03:28

阅读:418

标签:子窗体   父窗体   调用   

父窗体内函数:

  ///


  /// 电台频率框获取焦点后 弹出数字窗口
  ///

  ///
  ///
  private void txtFrequency_Enter(object sender, EventArgs e)
  {
   DigitDialog fsDigit = new DigitDialog();
   this.AddOwnedForm(fsDigit);//添加这句

   fsDigit.Show();
  }

 

子窗体内函数:

private void btnNum0_Click(object sender, EventArgs e)
  {
   Button btnNumber = sender as Button;
   Form fParent = (Form)this.Owner;//获取父窗口
   if (null != fParent)
   {
    foreach (Control crtl in fParent.Controls)
    {

        //添加代码

    }

   }

  }

本文出自 “交流思想 你我共赢” 博客,请务必保留此出处http://xfqxj.blog.51cto.com/2342497/1430783

父窗体、子窗体关系设置,搜素材,soscw.com

父窗体、子窗体关系设置

标签:子窗体   父窗体   调用   

原文地址:http://xfqxj.blog.51cto.com/2342497/1430783


评论


亲,登录后才可以留言!