我正在尝试在WPF应用程序中使用Command和CommandParameter与Buttons绑定。我有完全相同的代码在Silverlight中运行得很好,所以我想知道我做错了什么!
我有一个组合框和一个按钮,其中命令参数绑定到组合框SelectedItem:
<Window x:Class="WPFCommandBindingProblem.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<StackPanel Orientation="Horizontal">
<ComboBox x:Name="combo" VerticalAlignment="Top" />
<Button Content="Do Something" Command="{Binding Path=TestCommand}"
CommandParameter="{Binding Path=SelectedItem, ElementName=combo}"
VerticalAlignment="Top"/>
</StackPanel>
</Window>
背后的代码如下:
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
combo.ItemsSource = new List<string>(){
"One", "Two", "Three", "Four", "Five"
};
this.DataContext = this;
}
public TestCommand TestCommand
{
get
{
return new TestCommand();
}
}
}
public class TestCommand : ICommand
{
public bool CanExecute(object parameter)
{
return parameter is string && (string)parameter != "Two";
}
public void Execute(object parameter)
{
MessageBox.Show(parameter as string);
}
public event EventHandler CanExecuteChanged;
}
使用我的Silverlight应用程序,当组合框的SelectedItem发生更改时,CommandParameter绑定会导致我的命令的CanExecute方法使用当前选定的项重新评估,并且相应地更新按钮启用状态。
对于WPF,由于某种原因,只有在解析XAML时创建绑定时才会调用CanExecute方法。
有什么想法吗?
答案 0 :(得分:8)
您需要告诉WPF CanExecute可以更改 - 您可以在TestCommand类中自动执行此操作:
public event EventHandler CanExecuteChanged
{
add{CommandManager.RequerySuggested += value;}
remove{CommandManager.RequerySuggested -= value;}
}
每次视图中的属性发生变化时,WPF都会询问CanExecute。