我的DataTrigger
XAML 中有一个绑定到我的 ViewModel 类中的属性“ShowEffect”。我还有一个按钮,它绑定到RelayCommand
调用方法的(如下所示的类)。在该方法中,我将“ShowEffect”设置为 true。但是,DataTrigger
似乎没有回应;效果不显示:
我使用以下方式声明该属性:
private Boolean _ShowEffect;
public Boolean ShowEffect
{
get { return _ShowEffect; }
set { _ShowEffect = value; }
}
RelayCommand
班级:
public class RelayCommand : ICommand
{
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;
}
public bool CanExecute(object parameter)
{
return _canExecute == null ? true : _canExecute(parameter);
}
public event EventHandler CanExecuteChanged
{
add { CommandManager.RequerySuggested += value; }
remove { CommandManager.RequerySuggested -= value; }
}
public void Execute(object parameter)
{
_execute(parameter);
}
private readonly Action<object> _execute;
private readonly Predicate<object> _canExecute;
}
我想知道这个问题是否与调度程序有关。当我在命令调用的方法中设置属性时,任何人都可以建议为什么绑定不起作用?当我在 ViewModel 的其他任何地方设置属性时,它就可以工作。