方法一:
Apperarance 屬性:Faltbuttons
SizeMode屬性:Fixed
各個TabPage的Text :空
ItemSize : Width=0;Height=1; //Height不能設為0
方法二:
private void Form1_Load(object sender, EventArgs e)
{
tabControl1.Region = new Region(new RectangleF(this.tabPage1.Left, this.tabPage1.Top,
this.tabPage1.Width, this.tabPage1.Height));
}
參考:CSDN