Właściwym sposobem postępowania z przyciskami jest implementacja interfejsu ICommand. Oto przykład z mojego rozwiązania:
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
}
Można wtedy DataBind do przycisku tak:
<Button Command="{Binding MyCommand}" .../>
Co lewa jest zadeklarować właściwość ICommand
na viewmodel:
public ICommand MyCommand { get; private set; }
//in constructor:
MyCommand = new RelayCommand(_ => SomeActionOnButtonClick(), _ => HasChanges);
Stan przycisku zostanie automatycznie zaktualizowany po większości zmian. Jeśli nie z jakiegoś powodu - możesz wymusić aktualizację, dzwoniąc pod numer CommandManager.InvalidateRequerySuggested