Java教程

Winfrom 向panel控件添加指定行列的控件

本文主要是介绍Winfrom 向panel控件添加指定行列的控件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

最近用到了这个功能 就总结一段代码,建议panel控件使用此FlowLayoutPanel 控件

private int col = 2;//列数
private int row = 2; //行数
private void InitPnl()
       {
           flpHoldPatients.Controls.Clear();
           var height = flpHoldPatients.Height / row;
           var width = flpHoldPatients.Width / col - 2 * col;
           for (int i = 0; i < row; i++)
           {
               for (int j = 0; j < col; j++)
               {
                   var uc = new button();
                   uc.Height = height;
                   uc.Width = width;
                   uc.Margin = new System.Windows.Forms.Padding(0, 0, 2, 0);
                   uc.Location = new Point(j * width, i * height);
                   flpHoldPatients.Controls.Add(uc);
               }
           }
       }

 

 

 

转 : https://www.cnblogs.com/Angel-szl/p/12856100.html

这篇关于Winfrom 向panel控件添加指定行列的控件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!