如何设置 ButtonBaseExtensions.Command DataContext,而不更改按钮?语境

发布于 2024-10-29 00:32:38 字数 714 浏览 7 评论 0原文

我在 WP7 应用程序中使用 mvvm light。我有一个列表框,其中包含对象集合的项目源。 列表框的 ItemTemplate DataTemplate 包含一个按钮。该按钮包含一个文本块,用于显示绑定对象的属性。如何在不更改数据上下文、文本块或将项目绑定到项目模板的 CommandParameter 的情况下将命令分配给按钮?

<ListBox x:Name="listBox" ItemsSource="{Binding Main.SomeCollection}" >
     <ListBox.ItemTemplate>
          <DataTemplate>
            <Button 
                Command:ButtonBaseExtensions.Command="{Binding Main.MyCommand}"
                Cmmand:ButtonBaseExtensions.CommandParameter="{Binding}" />
                     <TextBlock Text="{Binding Title}"/>
            </Button>
          </DataTemplate>
      </ListBox.ItemTemplate>
</ListBox>

谢谢

I am using mvvm light in a WP7 app. I have a listbox with an itemsource of a collection of objects.
The ItemTemplate DataTemplate for the listbox contains a button. The button contains a textblock that displayes a property from the bound object. How do I assign the Command to the button without changing the datacontext the textblock or the CommandParameter that gets the item bound to the itemtemplate?

<ListBox x:Name="listBox" ItemsSource="{Binding Main.SomeCollection}" >
     <ListBox.ItemTemplate>
          <DataTemplate>
            <Button 
                Command:ButtonBaseExtensions.Command="{Binding Main.MyCommand}"
                Cmmand:ButtonBaseExtensions.CommandParameter="{Binding}" />
                     <TextBlock Text="{Binding Title}"/>
            </Button>
          </DataTemplate>
      </ListBox.ItemTemplate>
</ListBox>

Thanks

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

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

发布评论

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

评论(1

颜漓半夏 2024-11-05 00:32:38

您需要获取对命令所在的 DataContext 的引用。在 MVVM Light 中,我们通常通过 ViewModelLocator 来完成此操作。由于 ViewModelLocator 公开为全局资源(在 App.xaml 中),因此您可以执行以下操作:

Command="{Binding Main.MyCommand, Source={StaticResource Locator}}"

当然,您也可以在 Blend 中直观地执行此操作。

干杯,
洛朗

You need to get a reference to the DataContext on which the Command is located. In MVVM Light, we typically do this through the ViewModelLocator. Since the ViewModelLocator is exposed as a global resource (in App.xaml), you can do:

Command="{Binding Main.MyCommand, Source={StaticResource Locator}}"

Of course you can also do that visually in Blend.

Cheers,
Laurent

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