WPF之命令Command

WPF命令Command可以分为系统命令和自定义命令。
我们可以把Command加到某些控件中,比如Button它自带有一个Command属性,所以Button可以修改成我们自定义的Command,但是TextBlock却没有Command属性所以不能为TextBlock附加Command

系统命令

系统命令包括以下

public static class SystemCommands
    {
        public static RoutedCommand CloseWindowCommand { get; }
        public static RoutedCommand MaximizeWindowCommand { get; }
        public static RoutedCommand MinimizeWindowCommand { get; }
        public static RoutedCommand RestoreWindowCommand { get; }
        public static RoutedCommand ShowSystemMenuCommand { get; }
  }

在xaml中使用

使用方式一

我们以CloseWindowCommand 命令解释如何使用,
在CommandWindow.xaml文件中加入以下代码
<Button Name="CloseWinBtn" Command="SystemCommands.CloseWindowCommand" Content="点击关闭"/>
然后在CommandWindow.cs中定义如下

public CommandWindow()
        {
            InitializeComponent();
            CommandBindings.Add(new CommandBinding(SystemCommands.CloseWindowCommand, (s, e) => Close()));

这样我们点击Button就能够实现关闭窗口的功能。

实现方式二

我们也可以在CommandWindow.xaml中如下定义系统命令(自定义的Command也可以采用这种方式)

<Window.CommandBindings>
        <CommandBinding
            Command="SystemCommands.CloseWindowCommand"
            Executed="CommandBinding_Executed_CloseWindow"
            CanExecute="CommandBinding_CanExecute_CloseWindow">
        </CommandBinding>
    </Window.CommandBindings>

在CommandWindow.cs中实现

private void CommandBinding_CanExecute_CloseWindow(object sender, CanExecuteRoutedEventArgs e)
        {
            e.CanExecute = true;
        }


        private void CommandBinding_Executed_CloseWindow(object sender, ExecutedRoutedEventArgs e)
        {
            MessageBox.Show("Exected close window command");
        }

这样我们点击CloseWinBtn的Button的时候,就会弹出"Exected close window command"对话框.

自定义命令

系统定义了两个可以直接简化自定义Command的类
1.RoutedUICommand

public class RoutedUICommand : RoutedCommand
    {
        public RoutedUICommand();
        public RoutedUICommand(string text, string name, Type ownerType);
        public RoutedUICommand(string text, string name, Type ownerType, InputGestureCollection inputGestures);

        public string Text { get; set; }
    }

2.RoutedCommand

public class RoutedCommand : ICommand
    {
        public RoutedCommand();
        public RoutedCommand(string name, Type ownerType);
        public RoutedCommand(string name, Type ownerType,   
                                                InputGestureCollection inputGestures);

        public string Name { get; }
        public Type OwnerType { get; }
        public InputGestureCollection InputGestures { get; }

        public event EventHandler CanExecuteChanged;
        public bool CanExecute(object parameter, IInputElement target);
        public void Execute(object parameter, IInputElement target);
    }

另外还有一个完全由自己自定义的ICommand

public interface ICommand
    {
        event EventHandler CanExecuteChanged;

        bool CanExecute(object parameter);
        void Execute(object parameter);
    }

以上三个类继承结构为RoutedUICommand->RoutedCommand->ICommand

自定义RoutedUICommand

我们定义一个类CustomCommand.cs,并且定义如下ExitCommand,该命令实现的功能为在CommandWindow中按Ctrl+W关闭窗口。

public static readonly RoutedUICommand ExitCommand = new     
       RoutedUICommand(
            "quit app",
            "ExitCommand",
            typeof(CustomCommand),
        new InputGestureCollection() {
            new KeyGesture(Key.W, ModifierKeys.Control)  //可以为它绑定快捷键
        });

在CommandWindow.xaml中定义如下

<Window.CommandBindings>
        <CommandBinding
            Command="local:CustomCommand.ExitCommand"
            CanExecute="CommandBinding_CanExecute"
            Executed="CommandBinding_Executed">
        </CommandBinding>
</Window.CommandBindings>

在CommandWindow.cs中实现如下两个方法

private void CommandBinding_CanExecute(object sender, CanExecuteRoutedEventArgs e)
        {
            e.CanExecute = true;
        }

        private void CommandBinding_Executed(object sender, ExecutedRoutedEventArgs e)
        {
            Close();
        }

这样在CommandWindow在前台的时候按Ctrl+W即会关闭该窗口。

自定义RoutedCommand

我们还是在上一步新建的CustomCommand文件中定义如下Command

private static RoutedCommand _Next = new RoutedCommand(nameof(Next), typeof(CustomCommand));
        /// <summary>
        ///     下一个
        /// </summary>
        public static RoutedCommand Next
        {
            get
            {
                return _Next;
            }
        }

然后在CommandWindow.xaml定义如下内容

<Button Command="local:CustomCommand.Next" Content="自定义RoutedCommand命令Next"/>

在CommandWindow.cs中添加自定义的Command Next

public CommandWindow()
        {
           
            CommandBindings.Add(new CommandBinding(CustomCommand.Next, (s, e) =>
            {
                MessageBox.Show("Next命令响应");
            }));
         }  

点击该Button的时候会弹出窗口"Next命令响应"

自定义ICommand

我们定义一个命令Prev代码如下

public class PrevCommand : ICommand
    {
        public string Name { get; set; }
        public Type OwnerType { get; set; }
        public PrevCommand() { }
        public PrevCommand(string name, Type ownerType){
            Name = name;
            OwnerType = ownerType;
        }
        //发生此事件时,命令源会调用 CanExecute 命令
        public event EventHandler CanExecuteChanged;

        /// <summary>
        /// 如果这边返回为false那么Execute函数就不会调用
        /// </summary>
        /// <param name="parameter"></param>
        /// <returns></returns>
        public bool CanExecute(object parameter)
        {
            Console.WriteLine("invoke CanExectue...");
            return CanExecutedFlag;
        }

        public void Execute(object parameter)
        {
            string param = parameter as string;
            MessageBox.Show("Exectue PrevCommand..param = ." + param);
            CanExecutedFlag = !CanExecutedFlag;
            ///调用完这个之后会重新调用CanExecuted函数
            CanExecuteChanged?.Invoke(this, EventArgs.Empty);
        }
    }

在CommandWindow.cs中定义Prev命令的参数

public string _PrevCommandParam = "THis is PrevCommandParam";
        public string PrevCommandParam
        {
            get
            {
                return _PrevCommandParam;
            }
            set
            {
                _PrevCommandParam = value;
            }
        }

在CommandWindow.xaml来调用Prev命令

<Button
                    Content="自定义ICommand命令Next"
                    CommandParameter="{Binding PrevCommandParam, RelativeSource={RelativeSource AncestorType=Window}}"
                    Command="{Binding mPreviewCommand, RelativeSource={RelativeSource AncestorType=Window}}"/>

然后点该按钮界面会弹如下对话框


自定义ICommand结果.png

本文参考代码WpfTutorial-LessonCommand

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343

推荐阅读更多精彩内容