码迷,mamicode.com
首页 > 其他好文 > 详细

ICommand接口

时间:2015-09-14 09:25:58      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:

WPF 中的命令是通过实现 ICommand 接口创建的。ICommand 的 WPF 实现是 RoutedCommand 类。

  WPF 中的主要输入源是鼠标、键盘、墨迹和路由命令。更加面向设备的输入使用 RoutedEvent 来通知应用程序页中的对象已发生了输入事件。

ICommand接口只要是用于绑定Button等的点击事件,当数据改变的时候,会做出一些相应的通知,

当继承ICommand接口后,下面的方法则需要实现,它们之间的关系如图所示:

技术分享

定义一个类实现ICommand接口

   public class DelegateCommand : ICommand
    {
        public Action<object> ExecuteAction { get; set; }
        public Func<object,bool> CanExecuteFunc { get; set; }

        public event EventHandler CanExecuteChanged;

        public bool CanExecute(object parameter)
        {
            if (CanExecuteFunc == null)
                return true;
            return
                CanExecuteFunc(parameter);
        }

        public void Execute(object parameter)
        {
            if (ExecuteAction == null)
                return;
            ExecuteAction(parameter);
        }
    }

在调用类中添加方法

public MainWindow()
        {
            InitializeComponent();

            AddCommand = new DelegateCommand();
            AddCommand.ExecuteAction = (para)=>
            {
                MessageBox.Show("我是按钮");
            };
        }
        public DelegateCommand AddCommand { get; set; }

在vm中command的绑定代码

<Button Content="点击我" Command="{Binding AddCommand}" />

 

ICommand接口

标签:

原文地址:http://www.cnblogs.com/lunawzh/p/4806178.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!