mvvm框架中icommand的用法

发布时间:2020-06-08 14:07:45 作者:Leah
来源:亿速云 阅读:319

本文将为大家详细介绍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接口类的实现就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

推荐阅读:
  1. iOS框架MVC+MVVM结合的实战
  2. 怎么在vue中实现一个MVVM框架

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

mvvm icommand mvvmlight

上一篇:android实现综合布局

下一篇:第四十九天:php-7.0编译模块的出错

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》