TableLayoutPanel 动态添加 行 列


      //添加行 横排

    ++this.tbPnl.RowCount;

            this.tbPnl.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));

 

            ++this.tbPnl.RowCount;

            this.tbPnl.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));

           

            ++this.tbPnl.RowCount;

            this.tbPnl.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));           

    //添加列 竖排 

            ++this.tbPnl.ColumnCount;

            this.tbPnl.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));

 

          

            

            foreach (IPlugin plugin in plugins)

            {

                Label a = new Label();

                a.Text =plugin.Text;

                a.Anchor = System.Windows.Forms.AnchorStyles.None;

                this.tbPnl.Controls.Add(a, 0, 0);

            }


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM