如何设置 ButtonBaseExtensions.Command DataContext,而不更改按钮?语境
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要获取对命令所在的 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