c# tableLayoutPanel控件在某行某列中添加文本方法

c# tableLayoutPanel控件在某行某列中添加文本方法,第1张

你说的文本就是控件文本框吧。类似如下的代码

            TextBox tb = new TextBox()

            tb.Text = "Hello World"

            this.tableLayoutPanel1.Controls.Add(tb, 1, 1)

//假设你第二行的控件叫button1

tableLayoutPanel1.RowCount=3

//tableLayoutPanel1.RowStyles.Insert(1, new RowStyle(SizeType.Absolute, 20))

tableLayoutPanel1.SetRow(button1, 2)

Button btn = new Button()

this.Controls.Add(btn) //向窗体中追加

tableLayoutPanel1.RowCount = 3

tableLayoutPanel1.SetRow(btn, 2)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11269810.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-14
下一篇 2023-05-14

发表评论

登录后才能评论

评论列表(0条)

保存