如何关闭 TabControlEx 中的所有选项卡?

发布于 2024-12-08 09:56:26 字数 635 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬色的秋千 2024-12-15 09:56:26

如果它是一个普通的 TabControl 那么我假设你有:

<TabControl ItemsSource="{Binding Path=MyTabs}"></TabControl>  

一个选项卡控件,其集合设置为 Item 源属性在

MyTabs=new List()CloseWorkSpaceCommand 的 code>Execute 操作

MyTabs 将是视图的 ViewModel 中的一个属性。 ViewModel 应该实现 INotifyPropertyChanged

If its a normal TabControl then i assume you have :

<TabControl ItemsSource="{Binding Path=MyTabs}"></TabControl>  

A tab controls with a collection set to the Item source property

Set MyTabs=new List<Tab>() on the Execute action for CloseWorkSpaceCommand

MyTabs will be a property in ViewModel of your View. ViewModel should Implement INotifyPropertyChanged

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文