溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mvvm框架中icommand的用法

發(fā)布時間:2020-06-08 14:07:45 來源:億速云 閱讀:336 作者:Leah 欄目:編程語言

本文將為大家詳細(xì)介紹mvvm框架中icommand的用法,代碼詳細(xì)步驟清晰,細(xì)節(jié)處理妥當(dāng),希望大家通過這篇文章有所收獲,我們先來看看ICommand接口類的實現(xiàn):

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來綁定
假設(shè)我們用的是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.
然后要設(shè)置一下RelativeSource
不然找不到這個方法會輸出錯誤信息

關(guān)于ICommand接口類的實現(xiàn)就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI