//添加行 横排

    ++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);

            }

相关文章:

  • 2022-02-23
  • 2022-12-23
  • 2022-01-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-08
  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
  • 2022-02-05
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案