小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

C# WinForm 控件在窗體中動(dòng)態(tài)居中創(chuàng)建刪除控件及對(duì)其賦值(轉(zhuǎn))

 googo 2012-03-26
C# WinForm 控件在窗體中動(dòng)態(tài)居中創(chuàng)建刪除控件及對(duì)其賦值(轉(zhuǎn))
2011-04-12 11:00

一、 以lable為例:
 
 
 
        在Form中放一個(gè)控件,讓其在啟動(dòng)和動(dòng)態(tài)改變窗口大小時(shí)始終居中

            int gLeft = this.Width / 2 - lable1.Width / 2; //this指Form
            int gTop = this.Height / 2 - lable1.Height / 2;
 
            lable1.Location = new Point(gLeft, gTop);

   二、動(dòng)態(tài)創(chuàng)建控件并找到或者刪除控件
 
            1、 以Lable為例創(chuàng)建控件:
 
                        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、找到控件并對(duì)其賦值
 
 
 
 
 
             Control[] control = this.Controls.Find("lable1" ,true);
 
             if (control.Length == 1 && control[0] is Label)
              {
 
                    (control[0] as Label).Text =“hello”;
 
              }

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多