如何关闭 TabControlEx 中的所有选项卡?
我正在使用 WPF TabControlEx(关闭选项卡)。
我正在寻找一种方法来关闭所有带有选项卡中的 ContextMenu 的选项卡。
我正在使用MVVM。
<Style TargetType="{x:Type TabItem}">
...
<Grid.ContextMenu>
<ContextMenu>
<MenuItem Header="Close tab" Command="{Binding CloseWorkSpaceCommand}" /> <!-- OK -->
<Separator />
<MenuItem Header="Close other tabs" Command="{Binding ...Command}" />
<Separator />
<MenuItem Header="Close all tabs" Command="{Binding ...Command}" />
</ContextMenu>
</Grid.ContextMenu>
有什么建议吗?
非常感谢您的帮助
I'm working with the WPF TabControlEx (close tabs).
I'm looking a way to close all the tabs with a ContextMenu in tabs.
I'm using MVVM.
<Style TargetType="{x:Type TabItem}">
...
<Grid.ContextMenu>
<ContextMenu>
<MenuItem Header="Close tab" Command="{Binding CloseWorkSpaceCommand}" /> <!-- OK -->
<Separator />
<MenuItem Header="Close other tabs" Command="{Binding ...Command}" />
<Separator />
<MenuItem Header="Close all tabs" Command="{Binding ...Command}" />
</ContextMenu>
</Grid.ContextMenu>
Any suggestions?
Thanks a lot for all your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它是一个普通的
TabControl
那么我假设你有:一个选项卡控件,其集合设置为 Item 源属性在
MyTabs=new List()
上CloseWorkSpaceCommand
的 code>Execute 操作MyTabs 将是视图的 ViewModel 中的一个属性。 ViewModel 应该实现 INotifyPropertyChanged
If its a normal
TabControl
then i assume you have :A tab controls with a collection set to the Item source property
Set
MyTabs=new List<Tab>()
on theExecute
action forCloseWorkSpaceCommand
MyTabs will be a property in ViewModel of your View. ViewModel should Implement
INotifyPropertyChanged