【发布时间】:2015-12-09 03:00:51
【问题描述】:
我有一个 ItemsControl 控件,它有一个 ObservableCollection 作为它的 ItemsSource。它还有一个位于其 DataTemplate 内的按钮。按钮的 Command 属性绑定到 ViewModel 中的 RelayCommand(我使用的是 MVVM Light),CommandParameter 绑定到 ItemsSource 中的相应项。
问题是由于某种原因,该命令永远不会触发。另一方面,代码隐藏工作正常。在调试鼠标单击事件处理程序时,我可以看到发送方(Button 类型)有一个填充了正确数据的 CommandParameter,而 Command 为空。
我错过了什么?
XAML:
<ItemsControl ItemsSource="{Binding Users}"
Margin="{StaticResource ContentMargin}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Margin="{StaticResource ImageButtonMargin}"
Style="{StaticResource ImageButtonStyle}"
Command="{Binding RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}, Path=DataContext.UserSelectedCommand}"
CommandParameter="{Binding}">
<!--...-->
视图模型:
private ObservableCollection<User> _users;
private RelayCommand<User> _userSelectedCommand;
public ObservableCollection<User> Users
{
get { return _users; }
set
{
_users = value;
RaisePropertyChanged();
}
}
public RelayCommand<User> UserSelectedCommand
{
get { return _userSelectedCommand; }
}
protected override sealed void SetCommands() // called in the constructor which is in turned called by SimpleIoc
{
userSelectedCommand = new RelayCommand<User>((user) => UserSeriesSelected(user));
}
private void UserSelected(User selectedUser)
{
}
【问题讨论】: