gpt4 book ai didi

c# - 如何仅使用获取访问器绑定(bind)到属性

转载 作者:太空狗 更新时间:2023-10-29 21:39:52 34 4
gpt4 key购买 nike

我的 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/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com