父窗体、子窗体关系设置
2020-12-13 03:28
标签:子窗体 父窗体 调用 父窗体内函数: /// fsDigit.Show(); 子窗体内函数: private void btnNum0_Click(object sender, EventArgs e) //添加代码 } } } 本文出自 “交流思想 你我共赢” 博客,请务必保留此出处http://xfqxj.blog.51cto.com/2342497/1430783 父窗体、子窗体关系设置,搜素材,soscw.com 父窗体、子窗体关系设置 标签:子窗体 父窗体 调用 原文地址:http://xfqxj.blog.51cto.com/2342497/1430783
/// 电台频率框获取焦点后 弹出数字窗口
///
///
///
private void txtFrequency_Enter(object sender, EventArgs e)
{
DigitDialog fsDigit = new DigitDialog();
this.AddOwnedForm(fsDigit);//添加这句
}
{
Button btnNumber = sender as Button;
Form fParent = (Form)this.Owner;//获取父窗口
if (null != fParent)
{
foreach (Control crtl in fParent.Controls)
{
下一篇:C++性能榨汁机之伪共享