ボタンを処理する適切な方法は、ICommandインターフェイスを実装することです。ここに私の解決策の例です:
public class RelayCommand : ICommand
{
readonly Action<object> _execute;
readonly Predicate<object> _canExecute;
public RelayCommand(Action<object> execute) : this(execute, null)
{
}
public RelayCommand(Action<object> execute, Predicate<object> canExecute)
{
if (execute == null)
throw new ArgumentNullException("execute");
_execute = execute;
_canExecute = canExecute;
}
#region ICommand Members
public bool CanExecute(object parameter)
{
return _canExecute == null ? true : _canExecute(parameter);
}
public void Execute(object parameter)
{
_execute(parameter);
}
public event EventHandler CanExecuteChanged
{
add { CommandManager.RequerySuggested += value; }
remove { CommandManager.RequerySuggested -= value; }
}
#endregion
}
あなたはその後、データバインド、このようなボタンにすることができます
<Button Command="{Binding MyCommand}" .../>
左いただきましたごのviewmodelにICommand
プロパティを宣言している:
public ICommand MyCommand { get; private set; }
//in constructor:
MyCommand = new RelayCommand(_ => SomeActionOnButtonClick(), _ => HasChanges);
ボタンの状態は、ほとんどの変更で自動的に更新されます。何らかの理由でそれができない場合は、CommandManager.InvalidateRequerySuggested