事件到命令的风格

发布于 2024-09-27 08:50:39 字数 1288 浏览 2 评论 0原文

有人可以告诉我如何以 tabitem 的样式编写事件命令吗?我在其他地方使用它没有问题,但我无法弄清楚它的风格。

我正在尝试使用 MVVM-Light 工具包在 Xaml for WPF 中执行此操作。

这是我想要做的一个示例:

<DataTemplate x:Key="WorkspacesTemplate">
        <igWindows:XamTabControl
          AllowTabClosing="True" 
          IsSynchronizedWithCurrentItem="True" 
          ItemsSource="{Binding}" TabItemCloseButtonVisibility="Visible" 
          Margin="4"
          Theme="Office2k7Black" >
            <igWindows:XamTabControl.Resources>
                <Style TargetType="{x:Type igWindows:TabItemEx}" 
                       BasedOn="{StaticResource {x:Type igWindows:TabItemEx}}" >
                    <Setter Property="Header" Value="{Binding Path=DisplayName}" />
                    <Style.Triggers>
                        <i:EventTrigger  >
                            <cmd:EventToCommand Command="{Binding Path=CloseCommand}"  />
                        </i:EventTrigger>
                    </Style.Triggers>
                </Style>
            </igWindows:XamTabControl.Resources>
        </igWindows:XamTabControl>
    </DataTemplate>

我正在使用 infragistics TabControl,但它应该与常规选项卡控件没有太大不同。

Can someone tell me how to code an event to command in a style for a tabitem? I have no problems using it elsewhere but I can not figure it out for a style.

I am trying to do this in Xaml for WPF using MVVM-Light toolkit.

Here is an example of what I am trying to do:

<DataTemplate x:Key="WorkspacesTemplate">
        <igWindows:XamTabControl
          AllowTabClosing="True" 
          IsSynchronizedWithCurrentItem="True" 
          ItemsSource="{Binding}" TabItemCloseButtonVisibility="Visible" 
          Margin="4"
          Theme="Office2k7Black" >
            <igWindows:XamTabControl.Resources>
                <Style TargetType="{x:Type igWindows:TabItemEx}" 
                       BasedOn="{StaticResource {x:Type igWindows:TabItemEx}}" >
                    <Setter Property="Header" Value="{Binding Path=DisplayName}" />
                    <Style.Triggers>
                        <i:EventTrigger  >
                            <cmd:EventToCommand Command="{Binding Path=CloseCommand}"  />
                        </i:EventTrigger>
                    </Style.Triggers>
                </Style>
            </igWindows:XamTabControl.Resources>
        </igWindows:XamTabControl>
    </DataTemplate>

I am using an infragistics TabControl but it shouldnt be much different than a regular tab control.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

音盲 2024-10-04 08:50:39

在您的示例中,EventTrigger 元素中没有 EventName 属性。您需要在选项卡上指定要触发命令的事件。

In your example, you don't have an EventName attribute in the EventTrigger element. You need to specify an event on the tab that you want to trigger the command.

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