1

我想在我的 winform 上以编程方式调整选项卡控件的大小。

tabCtrl.Size.Width = Convert.ToInt32(numericUpDown1.Value);
tabCtrl.Size.Height= Convert.ToInt32(numericUpDown2.Value);

但我得到错误:

无法修改“System.Windows.Forms.Control.Size”的返回值,因为它不是变量

知道如何以编程方式调整 Tab 控件的大小吗?

4

1 回答 1

5

用这个。请注意(int)强制转换,因为NummericUpdown.Value它是一个decimal值。

tabCtrl.Size = new Size((int)numericUpDown1.Value, (int)numericUpDown2.Value);
于 2012-09-04T19:40:06.323 回答