|
■No92154 (shu さん) に返信
tableLayoutPanel1をフォームにはりつけて、
Dock=Fill、CellBorderStyle=Singleの状態で、
下記実行しましたら、動的に変わってるみたいです。
public Form1()
{
InitializeComponent();
tableLayoutPanel1.ColumnCount = 3;
tableLayoutPanel1.RowCount = 3;
tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
}
|