2024年3月1日 星期五

C# TabControl 隱藏(hide)/顯示(show) TabPage的方法

 private void button2_Click(object sender, EventArgs e)

{

    this.tabPage2.Parent = null; // hide

    this.tabPage1.Parent = this.tabControl1; //show

}


private void button1_Click(object sender, EventArgs e)

{

    this.tabPage1.Parent = null; // hide

    this.tabPage2.Parent = this.tabControl1; //show

}


沒有留言:

張貼留言