作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的 wpf 窗口上有一些自定义的可编辑列表框。我还有一个带有 Property Changed 的 viewmodel 类,它看起来像这样:
public bool HasChanges
{
get
{
return customers.Any(customer => customer.Changed);
}
}
所以,我想将我的保存按钮绑定(bind)到这个属性:
<Button IsEnabled="{Binding HasChanges, Mode=OneWay}"...
我的问题是如果更改了列表框行之一,如何更新保存按钮?
最佳答案
处理按钮的正确方法是实现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
}
然后您可以像这样将数据绑定(bind)到按钮:
<Button Command="{Binding MyCommand}" .../>
剩下的就是在您的 View 模型上声明一个 ICommand
属性:
public ICommand MyCommand { get; private set; }
//in constructor:
MyCommand = new RelayCommand(_ => SomeActionOnButtonClick(), _ => HasChanges);
然后按钮的状态将根据大多数更改自动更新。如果由于某种原因没有更新 - 您可以通过调用 CommandManager.InvalidateRequerySuggested
关于c# - 如何仅使用获取访问器绑定(bind)到属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18311459/
我是一名优秀的程序员,十分优秀!