C# WinForm 控件在窗体中动态居中 创建、删除控件及对其赋值

本文介绍了如何在C# WinForm应用中实现控件的动态居中,包括在窗体启动和调整大小时保持居中。同时,讲解了如何动态创建、删除Label控件,并对其进行赋值的操作。示例代码详细展示了如何设置控件位置、属性以及在groupBox2中添加和移除控件的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

    一、 以lable为例:

 

        在Form中放一个控件,让其在启动和动态改变窗口大小时始终居中

 

            int gLeft = this.Width / 2 - lable1.Width / 2; //this指Form
            int gTop = this.Height / 2 - lable1.Height / 2;

            lable1.Location = new Point(gLeft, gTop);

 

   二、动态创建控件并找到或者删除控件

            1、 以Lable为例创建控件:

                        Label lbl = new Label();
                        lbl.Name = "lblNum" + m;
                        lbl.AutoSize = true;
                        lbl.BackColor = System.Drawing.Color.Transparent;
                        lbl.Font = new System.Drawing.Font("宋体", 36F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
                        lbl.ForeColor = System.Drawing.Color.White;
                        lbl.Location = new System.Drawing.Point(lable1.Location.X - 150, 29);
                        lbl.TextAlign = System.Drawing.ContentAlignment.TopCenter;
                        lbl.Anchor = System.Windows.Forms.AnchorStyles.Top;
                       // this.Controls.Add(lbl);窗体中添加控件
                        this.groupBox2.Controls.Add(lbl);//groupBox2中添加控件

              

            2、以Lable为例删除控件:

 

            if (this.groupBox2.Controls.ContainsKey("lable2") == true)
            {
                this.groupBox2.Controls.RemoveByKey("lable2");
            }

 

 

 

       3、找到控件并对其赋值

 

 

             Control[] control = this.Controls.Find("lable1" ,true);

             if (control.Length == 1 && control[0] is Label)
              {

                    (control[0] as Label).Text =“hello”;

              }

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值