在子窗体中怎么调用主窗体的控件

在子窗体中怎么调用主窗体的控件,第1张

1textbox设置为公有
public
2主窗体
获得子窗体的所有控件
controlcontrolcollection
collist
=
childformcontrols;(controlcontrolcollection类型)
3你想要的textbox就在collist
里面,自己做个遍历,就能找到你想要的textbox

foreach
(control
con
in
_controllist)
{
if(control
is
textbox)
{
找到了
}
}

用代码向窗体添加控件步骤如下

(1)实例化一个控件;

(2)设置控件实例属性;

(3)将控件实例添加到窗体的Controls集合中

示例用代码向窗体添加一个命令按钮,单击这个按钮关闭窗口并退出

(1)在Visual Studio中新建一个“Windos 窗体应用程序”

(2)窗体代码Form1cs如下:

using System;
using SystemCollectionsGeneric;
using SystemWindowsForms;
using SystemDrawing;
namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            
            //实例化一个命令按钮
            Button btn = new Button();
            
            //设置命令按钮的属性 
            btnLocation = new Point(50, 50);
            btnSize = new Size(80, 25);
            btnText = "退出";
            btnClick += btn_Click;
            
            //添加到窗口的Controls集合中
            thisControlsAdd(btn);
        }
        void btn_Click(object sender, EventArgs e)
        {
            thisClose();
        }
    }
}

(3)运行效果

窗体启动后

点击“退出”按钮后,窗口关闭。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/13089628.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-30
下一篇 2023-05-30

发表评论

登录后才能评论

评论列表(0条)

保存