原文:整理:WPF中CommandBindings的用法

目的:了解一下CommandBindings、InputBindings、ICommandSource中在WPF中扮演什么样的角色

CommandBindings:

将应用程序要执行的功能封装到中间层组件或独立的类中:可以将所有命令统一封装,统一管理,统一调用

定义过程:


  1. //将所有命令封装在一个类里面
  2. public class MyCommands
  3. {
  4. public static RoutedUICommand MyCommand = new RoutedUICommand();
  5. public static void DoCommand()
  6. {
  7. MyCommand.Execute("erer",null);
  8. }
  9. }

说明:定义一个类用来存放所有Binding命令,定义一个MyCommand命令供页面使用

Xaml中注册定义的命令:


  1. <!--第一步,将整个窗口要用到的命令注册-->
  2. <UserControl.CommandBindings>
  3. <CommandBinding Command="local:MyCommands.MyCommand"
  4. Executed="CommandBinding_Executed"
  5. CanExecute="CommandBinding_CanExecute"/>
  6. <!--如果CanExecute返回false则注册该命令的所有控件是不可用的-->
  7. </UserControl.CommandBindings>

Xaml中将命令赋值到需要调用该命令的ICommandSource对象


  1. <Grid>
  2. <StackPanel>
  3. <Menu>
  4. <!--实现了ICommandSource接口的控件都可以直接赋值到Command命令上-->
  5. <MenuItem Command="local:MyCommands.MyCommand"
  6. Header="menu"
  7. CommandParameter="1111" />
  8. </Menu>
  9. <Button Command="local:MyCommands.MyCommand" Height="50" Content="执行命令"
  10. CommandParameter="button"
  11. Grid.Row="1"/>
  12. <CheckBox Content="控制MyCommand是否可以执行" x:Name="cb" IsChecked="True"/>
  13. <Button Content="外部触发命令" Click="Button_Click"/>
  14. </StackPanel>
  15. </Grid>

ICommandSource对象 Command="local:MyCommands.MyCommand"  赋值会触发注册的MyCommand命令

注意:

<CommandBinding Command="local:MyCommands.MyCommand" 

                        Executed="CommandBinding_Executed" 

                        CanExecute="CommandBinding_CanExecute"/>

Command只能传入静态的命令,并通过Executed、CanExecute注册要实现的事件,不可以{Binding }到ViewModel

KeyBinding:

可以直接注册快捷键、鼠标


  1. <UserControl.InputBindings>
  2. <KeyBinding Command="local:MyCommands.MyCommand" Key="T" Modifiers="Alt"/>
  3. </UserControl.InputBindings>

说明:将快捷键Alt+T注册到命令local:MyCommands.MyCommand上,也可以对Command 执行{Binding}到ViewModel,本质上也是一个ICommandSource对象

也可以用在Xaml中这样写


  1. <UserControl.Resources>
  2. <RoutedUICommand x:Key="Cut" Text="剪切" />
  3. <RoutedUICommand x:Key="Copy" Text="复制" />
  4. <RoutedUICommand x:Key="Paste" Text="粘贴" />
  5. <RoutedUICommand x:Key="Select" Text="全选" />
  6. </UserControl.Resources>
  7. <UserControl.InputBindings>
  8. <KeyBinding Gesture="Ctrl+X" Command="{StaticResource Cut}" />
  9. <KeyBinding Gesture="Ctrl+C" Command="{StaticResource Copy}" />
  10. <KeyBinding Gesture="Ctrl+V" Command="{StaticResource Paste}" />
  11. </UserControl.InputBindings>
  12. <UserControl.CommandBindings>
  13. <CommandBinding Command="{StaticResource Cut}" Executed="CommandBinding_Cut"></CommandBinding>
  14. <CommandBinding Command="{StaticResource Copy}" Executed="CommandBinding_Copy"></CommandBinding>
  15. <CommandBinding Command="{StaticResource Paste}" Executed="CommandBinding_Paste"></CommandBinding>
  16. </UserControl.CommandBindings>

整理:WPF中CommandBindings的用法的更多相关文章

  1. 整理:WPF中XmlDataProvider的用法总结

    原文:整理:WPF中XmlDataProvider的用法总结 一.目的:了解XmlDataProvider中绑定数据的方法 二.绑定方式主要有三种: 1.Xaml资源中内置: <!--XPath ...

  2. WPF中StringFormat的用法

    原文:WPF中StringFormat的用法 WPF中StringFormat的用法可以参照C#中string.Format的用法 1. C#中用法: 格式化货币(跟系统的环境有关,中文系统默认格式化 ...

  3. WPF中StringFormat的用法--显示特定位数的数字

    原文:WPF中StringFormat的用法--显示特定位数的数字 版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.csdn.net/huangli321456/art ...

  4. WPF中log4net的用法

    WPF中如何使用log4nethttp://www.cnblogs.com/C-Sharp2/archive/2013/04/12/WPF-LOG4NET.html Apache log4net Ma ...

  5. wpf中INotifyPropertyChanged的用法

    using System;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using Sy ...

  6. 整理:WPF中Binding的几种写法

    原文:整理:WPF中Binding的几种写法 目的:整理WPF中Bind的写法 <!--绑定到DataContext--> <Button Content="{Bindin ...

  7. 在 WPF 中的线程

    线程处理使程序能够执行并发处理,以便它可以做多个操作一次.节省开发人员从线程处理困难的方式,设计了 WPF (窗口演示文稿基金会).这篇文章可以帮助理解线程在 WPF 中的正确用法. WPF 内部线程 ...

  8. WPF中的常用布局 栈的实现 一个关于素数的神奇性质 C# defualt关键字默认值用法 接口通俗理解 C# Json序列化和反序列化 ASP.NET CORE系列【五】webapi整理以及RESTful风格化

    WPF中的常用布局   一 写在开头1.1 写在开头微软是一家伟大的公司.评价一门技术的好坏得看具体的需求,没有哪门技术是面面俱到地好,应该抛弃对微软和微软的技术的偏见. 1.2 本文内容本文主要内容 ...

  9. WPF中StringFormat 格式化 的用法

    原文 WPF中StringFormat 格式化 的用法 网格用法 <my:DataGridTextColumn x:Name="PerformedDate" Header=& ...

随机推荐

  1. Model 中的Meta类选项

    通过一个内嵌类 "class Meta" 给你的 model 定义元数据, 类似下面这样: class Foo(models.Model): bar = models.CharFi ...

  2. selenium 框架

    结构如下: test_project|--logs|---pages |---register_page.py|      |---base_page.py|---test_case       |- ...

  3. 部署ceph存储集群及块设备测试

    集群环境 配置基础环境 添加ceph.repo wget -O /etc/yum.repos.d/ceph.repo https://raw.githubusercontent.com/aishang ...

  4. Vuex中mapState的用法

    Vuex中mapState的用法   今天使用Vuex的时候遇到一个坑,也可以说是自己的无知吧,折腾了好久,终于发现自己代码的错误了.真是天雷滚滚~~~~~~ index.js import Vue ...

  5. js 驼峰命名和下划线互换

    代码走你 // 下划线转换驼峰 function toHump(name) { return name.replace(/\_(\w)/g, function(all, letter){ return ...

  6. SpringBoot整合自定义FTP文件连接池

    说明:通过GenericObjectPool实现的FTP连接池,记录一下以供以后使用环境:JDK版本1.8框架 :springboot2.1文件服务器: Serv-U1.引入依赖 <!--ftp ...

  7. flask实战-个人博客-数据库-生成虚拟数据 --

    3.生成虚拟数据 为了方便编写程序前台和后台功能,我们在创建数据库模型后就编写生成虚拟数据的函数. 1)管理员 用于生成虚拟管理员信息的fake_admin()函数如下所示: personalBlog ...

  8. 11-C#笔记-函数-方法

    # 1 函数基本使用 函数的调用方法用C++. 主函数要在一个Class中,静态的,无返回值: 见示例 using System; namespace CalculatorApplication { ...

  9. USACO Superprime Rib

    洛谷 P1218 [USACO1.5]特殊的质数肋骨 Superprime Rib 洛谷传送门 JDOJ 1673: Superprime Rib JDOJ传送门 题目描述 农民约翰的母牛总是产生最好 ...

  10. 使用EventBus对模块解耦(附实例)

    用于模块间解耦,通过发布订阅的方式调用,每个人只负责自己的那部分. 写个小例子,比如现在有三个模块,订单.购物车.优惠券,由不同的人负责开发. 负责订单模块的人现在需要写个生成订单的方法,生成订单的逻 ...