public void HideTabcontrolLabel(TabControl tabControl1)
        {
            tabControl1.Appearance = TabAppearance.FlatButtons;
            tabControl1.SizeMode = TabSizeMode.Fixed;
            for (int i = 0; i < tabControl1.TabPages.Count; i++)
            {
                tabControl1.TabPages[i].Text = "";
            }
            tabControl1.ItemSize = new Size(0, 1);
        }

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-01
  • 2022-12-23
  • 2021-07-07
  • 2022-12-23
  • 2021-06-13
  • 2022-12-23
猜你喜欢
  • 2021-11-12
  • 2022-12-23
  • 2022-12-23
  • 2022-03-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案