WinForm——TableLayoutPanel实例

网友投稿 1115 2022-05-29

实例1、用TableLayoutPanel 制作表格

声明TableLayoutPanel对象

///

/// TableLayoutPanel

///

TableLayoutPanel table = new TableLayoutPanel();

添加控件和事件

private void Form2_Load(object sender, EventArgs e)

{

// 默认添加一行数据

table.Dock = DockStyle.Top;     //顶部填充

panel1.Controls.Add(table);

WinForm——TableLayoutPanel实例

table.ColumnCount = 5;          //5列

table.Height = table.RowCount * 40; //table的整体高度,每行40

table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, table.Width * 0.2f));    //利用百分比计算,0.2f表示占用本行长度的20%

table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, table.Width * 0.2f));

table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, table.Width * 0.2f));

table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, table.Width * 0.2f));

table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, table.Width * 0.2f));

for (int i = 1; i <= 10; i++)

{

AddRow("键盘侠"+i.ToString().PadLeft(2,'0'),"蜘蛛侠" + i.ToString().PadLeft(2, '0'), "钢铁侠" + i.ToString().PadLeft(2, '0'), "猪猪侠" + i.ToString().PadLeft(2, '0'), "死猪佩奇" + i.ToString().PadLeft(2, '0'));

}

}

private void AddRow(string apple, string orange, string banana, string casaba, string sugarcane)

{

try

{

// 动态添加一行

table.RowCount++;

//设置高度,边框线也算高度,所以将40修改大一点

table.Height = table.RowCount * 44;

// 行高

table.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40));

// 设置cell样式,增加线条

table.CellBorderStyle = TableLayoutPanelCellBorderStyle.OutsetPartial;

int i = table.RowCount - 1;

Label label1 = new Label();

label1.Text = apple;

label1.Dock = DockStyle.Fill;

label1.BackColor = Color.Red;

label1.Click += Label1_Click;

label1.Font = new Font("楷体", 13, FontStyle.Regular);

label1.TextAlign = ContentAlignment.MiddleCenter;

table.Controls.Add(label1, 0, i);

Label label2= new Label();

label2.Text = orange;

label2.Width = 200;

label2.Height = 40;

label2.Click += Label1_Click;

label2.Font = new Font("楷体", 13, FontStyle.Regular);

label2.TextAlign = ContentAlignment.MiddleCenter;

table.Controls.Add(label2, 1, i);

Label label3 = new Label();

label3.Text = banana;

label3.Width = 200;

label3.Height = 40;

label3.Click += Label1_Click;

label3.Font = new Font("楷体", 13, FontStyle.Regular);

label3.TextAlign = ContentAlignment.MiddleCenter;

table.Controls.Add(label3, 2, i);

Label label4 = new Label();

label4.Text = casaba;

label4.Width = 200;

label4.Height = 40;

label4.Click += Label1_Click;

label4.Font = new Font("楷体", 13, FontStyle.Regular);

label4.TextAlign = ContentAlignment.MiddleCenter;

table.Controls.Add(label4, 3, i);

Label label5 = new Label();

label5.Text = sugarcane;

label5.Width = 200;

label5.Height = 40;

label5.Click += Label1_Click;

label5.Font = new Font("楷体", 13, FontStyle.Regular);

label5.TextAlign = ContentAlignment.MiddleCenter;

table.Controls.Add(label5, 4, i);

}

catch (Exception ex)

{

MessageBox.Show(ex.Message.PadRight(30, ' '), "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);

}

}

private void Label1_Click(object sender, EventArgs e)

{

Label label = (Label)sender;

MessageBox.Show(label.Text);

}

实例2、实现表格的跨列

在TableLayoutPanel中加入panel对象,设置panel对象的ColumnSpan属性为2,将Marign设置为0,Dock设置为Fill。

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Gorm 读写分离
下一篇:docker打包 commit和Dockerfile
相关文章