码迷,mamicode.com
首页 > Windows程序 > 详细

wpf----命令(Command)

时间:2020-05-21 10:07:40      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:data   cti   control   class   stat   span   key   command   out   

一,自定义命令:

1创建一个类的静态RoutedUICommand对象.并且在类初始化中创建该静态对象. 本实列创建了该类和类中的静态对象.

 public class DataCommands
    {
        private static RoutedUICommand requery;
        static DataCommands()
        {
            InputGestureCollection inputs = new InputGestureCollection();
            inputs.Add(new KeyGesture(Key.R, ModifierKeys.Control, "Ctrl+R"));
            requery = new RoutedUICommand(
              "Requery", "Requery", typeof(DataCommands), inputs);
        }

        public static RoutedUICommand Requery
        {
            get { return requery; }
        }
    }

(注意,是类的一个静态属性).


2,使用该命令:

wpf----命令(Command)

标签:data   cti   control   class   stat   span   key   command   out   

原文地址:https://www.cnblogs.com/frogkiller/p/12928291.html

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