WPF C# Programmatically adding and moving tabs

前端 未结 2 1427
夕颜
夕颜 2021-01-04 13:09

I\'m currently working on something that is probably done in plenty of examples out there. But after some searching I can\'t find anything.

I\'m working with WPF tab

2条回答
  •  情歌与酒
    2021-01-04 13:45

    Not tested, but following should work:

    int idx = tabControl1.Items.Count;
    tabControl1.SelectedIndex = idx - 1;
    TabItem ti = new TabItem();
    tabControl1.Items.Insert(tabControl1.Items.IndexOf(tabControl1.Items.Last()), ti);
    

提交回复
热议问题