private void menuStepAdd_Click(object sender, EventArgs e)
{
     frmAddStep addStep = new frmAddStep();
     addStep.FormBorderStyle = FormBorderStyle.None;
     addStep.TopLevel = false;
     splitMain.Panel2.Controls.Add(addStep);
     addStep.Show();
}

this.tabControl1.TabPages.Remove(tabPage2);

相关文章:

  • 2022-01-21
  • 2022-12-23
  • 2021-09-02
  • 2022-12-23
  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案