本文将为大家详细介绍mvvm框架中icommand的用法,代码详细步骤清晰,细节处理妥当,希望大家通过这篇文章有所收获,我们先来看看ICommand接口类的实现:
public class RelayCommand : ICommand
{
private Action<object> _execute;
private Predicate<object> _canExecute;
public RelayCommand(Action<object> execute, Predicate<object> canExecute)
{
this._execute = execute;
this._canExecute = canExecute;
}
public event EventHandler CanExecuteChanged
{
add
{
CommandManager.RequerySuggested += value;
}
remove
{
CommandManager.RequerySuggested -= value;
}
}
public bool CanExecute(object parameter)
{
return _canExecute(parameter);
}
public void Execute(object parameter)
{
_execute(parameter);
}
}
在viewmodel中添加
void UpdateExecute()
{
Console.WriteLine("ICommandExecute");
}
bool CanUpdateExecute()
{
return true;
}
private ICommand _doSomething;
public ICommand DoSomething
{
get
{
if (_doSomething == null)
{
_doSomething = new RelayCommand(p => this.UpdateExecute(), p => this.CanUpdateExecute());
}
return _doSomething;
}
}
在xaml中用Command来绑定
假设我们用的是RadioButton
<RadioButton Content="{Binding Content}" IsChecked="{Binding IsCheck}" GroupName="RadioButtons"
Command="{Binding DataContext.DoSomething,RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=StackPanel}}"></RadioButton>
注意:
Binding DataContext.DoSomething
这里要用DataContext.
然后要设置一下RelativeSource
不然找不到这个方法会输出错误信息
关于ICommand接口类的实现就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。