我想在我的winform上以编程方式调整大小选项卡Control。
tabCtrl.Size.Width = Convert.ToInt32(numericUpDown1.Value);
tabCtrl.Size.Height= Convert.ToInt32(numericUpDown2.Value);
但我得到错误:
无法修改'System.Windows.Forms.Control.Size'的返回值,因为它不是变量
任何想法如何以编程方式调整Tab控件的大小?
答案 0 :(得分:5)
使用它。请注意(int)
广告,因为NummericUpdown.Value
是decimal
值。
tabCtrl.Size = new Size((int)numericUpDown1.Value, (int)numericUpDown2.Value);