WPF customize DelegateCommand

2021-01-27 21:12

阅读:588

标签:cut   sys   view   span   his   ons   string   app   pac   

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;

namespace WpfApp55.ViewModel
{
    public class VM : INotifyPropertyChanged
    {
        public event PropertyChangedEventHandler PropertyChanged;

        public void OnPropertyChanged(string propName)
        {
            var handler = PropertyChanged;
            if (handler != null)
            {
                handler(this, new PropertyChangedEventArgs(propName));
            }
        }

        private DelegateCommand UCCmdValue;
        public DelegateCommand UCCmd
        {
            get
            {
                if(UCCmdValue==null)
                {
                    UCCmdValue = new DelegateCommand(UCCmdExecuted, UCCmdCanExecute);
                }
                return UCCmdValue;
            }
        }

        private bool UCCmdCanExecute(object obj)
        {
            return true;
        }

        private void UCCmdExecuted(object obj)
        {
            MessageBox.Show("You had clicked the customized button!");
        }
    }
}

 

WPF customize DelegateCommand

标签:cut   sys   view   span   his   ons   string   app   pac   

原文地址:https://www.cnblogs.com/Fred1987/p/11923135.html


评论


亲,登录后才可以留言!