如何更改wpf TabControl中TabItem的顺序
我需要更改 TabItem 的顺序。
我尝试过删除/插入,但不起作用。
void UserControl_Loaded(object sender, RoutedEventArgs e) {
if(condition) {
TabControl.Items.Remove(TabItem);
TabControl.Items.Insert(0, TabItem);
}
}
无效操作异常: 元素已经有一个逻辑父元素。在将其附加到新父级之前,必须将其与旧父级分离。
怎么解决这个问题呢?
I need to change the order of the TabItem.
I've tried with Remove / Insert and it doesn't works.
void UserControl_Loaded(object sender, RoutedEventArgs e) {
if(condition) {
TabControl.Items.Remove(TabItem);
TabControl.Items.Insert(0, TabItem);
}
}
InvalidOperationException:
Element already has a logical parent. It must be detached from the old parent before it is attached to a new one.
How to solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用“for”而不是“foreach”解决。
Solved using the "for" instead of "foreach".