请帮助我,或告诉我方向。我一直在网上搜索这个问题,但找不到答案。我有 TextBlock,通过单击文本块,我将选项卡项添加到选项卡控件中。一切正常,除了 IS Selected= true; 选项卡项未被选中。我必须手动选择它。这是我的代码。
var tabControl = (sender as TextBlock).FindParent<TabControl>();
tabControl.Items.Add(new TabItem() { Header = "10 Last Documents", IsSelected = true, Content = rec, Width = 150 });
从 Button 投射时没关系。请帮我!