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

时间:2012-09-04 19:38:03

标签: c# .net winforms tabcontrol

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

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

但我得到错误:

  

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

任何想法如何以编程方式调整Tab控件的大小?

1 个答案:

答案 0 :(得分:5)

使用它。请注意(int)广告,因为NummericUpdown.Valuedecimal值。

tabCtrl.Size = new Size((int)numericUpDown1.Value, (int)numericUpDown2.Value);