我想在我的 winform 上以编程方式调整选项卡控件的大小。
tabCtrl.Size.Width = Convert.ToInt32(numericUpDown1.Value);
tabCtrl.Size.Height= Convert.ToInt32(numericUpDown2.Value);
但我得到错误:
无法修改“System.Windows.Forms.Control.Size”的返回值,因为它不是变量
知道如何以编程方式调整 Tab 控件的大小吗?
我想在我的 winform 上以编程方式调整选项卡控件的大小。
tabCtrl.Size.Width = Convert.ToInt32(numericUpDown1.Value);
tabCtrl.Size.Height= Convert.ToInt32(numericUpDown2.Value);
但我得到错误:
无法修改“System.Windows.Forms.Control.Size”的返回值,因为它不是变量
知道如何以编程方式调整 Tab 控件的大小吗?