zoukankan      html  css  js  c++  java
  • 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);

                }

  • 相关阅读:
    phpajax高级篇
    一天学会ajax (php环境)
    php生成静态文件的方法
    MongoDB查询文档
    MongoDB删除文档
    MongoDB索引管理
    MongoDB插入文档
    MongoDB排序记录
    MongoDB 更新文档
    mongoDB 固定集合(capped collection)
  • 原文地址:https://www.cnblogs.com/z45281625/p/10671661.html
Copyright © 2011-2022 走看看