整理:WPF中CommandBindings的用法
目的:了解一下CommandBindings、InputBindings、ICommandSource中在WPF中扮演什么样的角色
CommandBindings:
将应用程序要执行的功能封装到中间层组件或独立的类中:可以将所有命令统一封装,统一管理,统一调用
定义过程:
-
//将所有命令封装在一个类里面
-
public class MyCommands
-
{
-
public static RoutedUICommand MyCommand = new RoutedUICommand();
-
-
public static void DoCommand()
-
{
-
MyCommand.Execute("erer",null);
-
}
-
-
}
说明:定义一个类用来存放所有Binding命令,定义一个MyCommand命令供页面使用
Xaml中注册定义的命令:
-
<!--第一步,将整个窗口要用到的命令注册-->
-
<UserControl.CommandBindings>
-
<CommandBinding Command="local:MyCommands.MyCommand"
-
Executed="CommandBinding_Executed"
-
CanExecute="CommandBinding_CanExecute"/>
-
-
<!--如果CanExecute返回false则注册该命令的所有控件是不可用的-->
-
</UserControl.CommandBindings>
Xaml中将命令赋值到需要调用该命令的ICommandSource对象
-
<Grid>
-
<StackPanel>
-
<Menu>
-
<!--实现了ICommandSource接口的控件都可以直接赋值到Command命令上-->
-
<MenuItem Command="local:MyCommands.MyCommand"
-
Header="menu"
-
CommandParameter="1111" />
-
</Menu>
-
<Button Command="local:MyCommands.MyCommand" Height="50" Content="执行命令"
-
CommandParameter="button"
-
Grid.Row="1"/>
-
-
<CheckBox Content="控制MyCommand是否可以执行" x:Name="cb" IsChecked="True"/>
-
-
-
<Button Content="外部触发命令" Click="Button_Click"/>
-
</StackPanel>
-
</Grid>
ICommandSource对象 Command="local:MyCommands.MyCommand" 赋值会触发注册的MyCommand命令
注意:
<CommandBinding Command="local:MyCommands.MyCommand"
Executed="CommandBinding_Executed"
CanExecute="CommandBinding_CanExecute"/>
Command只能传入静态的命令,并通过Executed、CanExecute注册要实现的事件,不可以{Binding }到ViewModel
KeyBinding:
可以直接注册快捷键、鼠标
-
<UserControl.InputBindings>
-
<KeyBinding Command="local:MyCommands.MyCommand" Key="T" Modifiers="Alt"/>
-
</UserControl.InputBindings>
说明:将快捷键Alt+T注册到命令local:MyCommands.MyCommand上,也可以对Command 执行{Binding}到ViewModel,本质上也是一个ICommandSource对象
也可以用在Xaml中这样写
-
<UserControl.Resources>
-
<RoutedUICommand x:Key="Cut" Text="剪切" />
-
<RoutedUICommand x:Key="Copy" Text="复制" />
-
<RoutedUICommand x:Key="Paste" Text="粘贴" />
-
<RoutedUICommand x:Key="Select" Text="全选" />
-
</UserControl.Resources>
-
<UserControl.InputBindings>
-
<KeyBinding Gesture="Ctrl+X" Command="{StaticResource Cut}" />
-
<KeyBinding Gesture="Ctrl+C" Command="{StaticResource Copy}" />
-
<KeyBinding Gesture="Ctrl+V" Command="{StaticResource Paste}" />
-
</UserControl.InputBindings>
-
<UserControl.CommandBindings>
-
<CommandBinding Command="{StaticResource Cut}" Executed="CommandBinding_Cut"></CommandBinding>
-
<CommandBinding Command="{StaticResource Copy}" Executed="CommandBinding_Copy"></CommandBinding>
-
<CommandBinding Command="{StaticResource Paste}" Executed="CommandBinding_Paste"></CommandBinding>
-
</UserControl.CommandBindings>
整理:WPF中CommandBindings的用法的更多相关文章
- 整理:WPF中XmlDataProvider的用法总结
原文:整理:WPF中XmlDataProvider的用法总结 一.目的:了解XmlDataProvider中绑定数据的方法 二.绑定方式主要有三种: 1.Xaml资源中内置: <!--XPath ...
- WPF中StringFormat的用法
原文:WPF中StringFormat的用法 WPF中StringFormat的用法可以参照C#中string.Format的用法 1. C#中用法: 格式化货币(跟系统的环境有关,中文系统默认格式化 ...
- WPF中StringFormat的用法--显示特定位数的数字
原文:WPF中StringFormat的用法--显示特定位数的数字 版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.csdn.net/huangli321456/art ...
- WPF中log4net的用法
WPF中如何使用log4nethttp://www.cnblogs.com/C-Sharp2/archive/2013/04/12/WPF-LOG4NET.html Apache log4net Ma ...
- wpf中INotifyPropertyChanged的用法
using System;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using Sy ...
- 整理:WPF中Binding的几种写法
原文:整理:WPF中Binding的几种写法 目的:整理WPF中Bind的写法 <!--绑定到DataContext--> <Button Content="{Bindin ...
- 在 WPF 中的线程
线程处理使程序能够执行并发处理,以便它可以做多个操作一次.节省开发人员从线程处理困难的方式,设计了 WPF (窗口演示文稿基金会).这篇文章可以帮助理解线程在 WPF 中的正确用法. WPF 内部线程 ...
- WPF中的常用布局 栈的实现 一个关于素数的神奇性质 C# defualt关键字默认值用法 接口通俗理解 C# Json序列化和反序列化 ASP.NET CORE系列【五】webapi整理以及RESTful风格化
WPF中的常用布局 一 写在开头1.1 写在开头微软是一家伟大的公司.评价一门技术的好坏得看具体的需求,没有哪门技术是面面俱到地好,应该抛弃对微软和微软的技术的偏见. 1.2 本文内容本文主要内容 ...
- WPF中StringFormat 格式化 的用法
原文 WPF中StringFormat 格式化 的用法 网格用法 <my:DataGridTextColumn x:Name="PerformedDate" Header=& ...
随机推荐
- Model 中的Meta类选项
通过一个内嵌类 "class Meta" 给你的 model 定义元数据, 类似下面这样: class Foo(models.Model): bar = models.CharFi ...
- selenium 框架
结构如下: test_project|--logs|---pages |---register_page.py| |---base_page.py|---test_case |- ...
- 部署ceph存储集群及块设备测试
集群环境 配置基础环境 添加ceph.repo wget -O /etc/yum.repos.d/ceph.repo https://raw.githubusercontent.com/aishang ...
- Vuex中mapState的用法
Vuex中mapState的用法 今天使用Vuex的时候遇到一个坑,也可以说是自己的无知吧,折腾了好久,终于发现自己代码的错误了.真是天雷滚滚~~~~~~ index.js import Vue ...
- js 驼峰命名和下划线互换
代码走你 // 下划线转换驼峰 function toHump(name) { return name.replace(/\_(\w)/g, function(all, letter){ return ...
- SpringBoot整合自定义FTP文件连接池
说明:通过GenericObjectPool实现的FTP连接池,记录一下以供以后使用环境:JDK版本1.8框架 :springboot2.1文件服务器: Serv-U1.引入依赖 <!--ftp ...
- flask实战-个人博客-数据库-生成虚拟数据 --
3.生成虚拟数据 为了方便编写程序前台和后台功能,我们在创建数据库模型后就编写生成虚拟数据的函数. 1)管理员 用于生成虚拟管理员信息的fake_admin()函数如下所示: personalBlog ...
- 11-C#笔记-函数-方法
# 1 函数基本使用 函数的调用方法用C++. 主函数要在一个Class中,静态的,无返回值: 见示例 using System; namespace CalculatorApplication { ...
- USACO Superprime Rib
洛谷 P1218 [USACO1.5]特殊的质数肋骨 Superprime Rib 洛谷传送门 JDOJ 1673: Superprime Rib JDOJ传送门 题目描述 农民约翰的母牛总是产生最好 ...
- 使用EventBus对模块解耦(附实例)
用于模块间解耦,通过发布订阅的方式调用,每个人只负责自己的那部分. 写个小例子,比如现在有三个模块,订单.购物车.优惠券,由不同的人负责开发. 负责订单模块的人现在需要写个生成订单的方法,生成订单的逻 ...