如何实现快捷键功能

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApplication1"
        mc:Ignorable="d"
        WindowStartupLocation="CenterScreen"
        KeyDown="Window_KeyDown"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <TextBlock x:Name="textBlock" HorizontalAlignment="Left" Margin="139,87,0,0" TextWrapping="Wrap" Text="TextBlock" VerticalAlignment="Top"/>
        <TextBox x:Name="textBox" HorizontalAlignment="Left" Height="23" Margin="194,175,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="120"/>

</Grid>
</Window>

程序代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WpfApplication1
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

private void Window_KeyDown(object sender, KeyEventArgs e)
        {
            textBlock.Text = e.Key.ToString();
        }
    }
}

时间: 2024-10-12 09:14:30

如何实现快捷键功能的相关文章

Eclipse常用快捷键及快捷键功能失效时的解决方案

当Eclipse快捷键功能,或者使用菜单时都无效.例如:搜索引用(快捷键Ctrl+Shift+G)无效: 解决方案:转换WorkSpac?e,或者删除WorkSpace目录下的?.metadata文件夹,重启Eclipse,重新设置. Eclipse的编辑功能非常强大,掌握了Eclipse快捷键功能,能够大大提高开发效率.Eclipse中有如下一些和编辑相关的快捷键.1. [ALT+/]此快捷键为用户编辑的好帮手,能为用户提供内容的辅助,不要为记不全方法和属性名称犯愁,当记不全类.方法和属性的名

Eclipse快捷键功能

转载一篇另人写的:https://blog.csdn.net/qq_30617755/article/details/50781003 Eclipse的编辑功能非常强大,掌握了Eclipse快捷键功能,能够大大提高开发效率.Eclipse中有如下一些和编辑相关的快捷键. ========最常用快捷键========= Ctrl-Shift-R: 打开资源(不只是用来寻找Java文件),打开你的工作区中任何一个文件. ctrl+O:      可以列出当前类中的所有方法及属性,你只需输入你想要查询

【转】IDEA快捷键功能说明及Eclipse对应操作

1.Ctrl+z是撤销快捷键 2.如果想恢复Ctrl+z 掉的内容,按快捷键为:Ctrl + Shift + Z.方可 3.Ctrl-H(Browse Type Hierarchy) Ctrl + Alt + H 2.Eclipse中的回车能自动跳到行尾,IDea怎么做?Ctrl+Shift+Enter(跳到行尾并且如果行尾没有分号自动补上分号)或者Ctrl+Right Ctrl + ALT + V对应eclipse ctrl + 2 + L的快捷键 生成构造方法快捷键Alt + Insert

Linux命令行的部分快捷键功能介绍

Ctrl+a 将光标移至当前内容的首位 Ctrl+e 将光标移至当前内容的尾部 Ctrl+c 作废当前所输入的内容 Ctrl+d 依次删除光标所在的右边内容 Ctrl+l 清屏,相当于命令clear Ctrl+u 直接删除光标左边的内容 Ctrl+k 直接删除光标右边的内容[包括光标所指的内容] Ctrl+r 快速查找以前使用的命令

MacBookAir常用的快捷键功能:

我是工作中实实在在用到的: 1.Mac中主要有四个修饰键,分别是Command,Control,Option和Shift.2.mac 打开终端新建文档:command +n (mac unix terminal 的终端)3.撤销上次操作:command +z 4.居中:command +e5.全选:command +a 6.加粗:command +b7.查找:command +f 8.粘贴复制:command +c ; command +v 9.打印:command +p 10.换行:excel

sublime 快捷键

快捷键 功能 ctrl+shift+n 打开新Sublime ctrl+shift+w 关闭Sublime,关闭所有打开文件 ctrl+shift+t 重新打开最近关闭文件 ctrl+n 新建文件 ctrl+s 保存 ctrl+shift+s 另存为 ctrl+f4 关闭文件 ctrl+w 关闭 ctrl+k, ctrl+b 切换侧边栏显示状态 f11 切换全屏状态 shift+f11 免打扰模式状态切换 backspace 删除左侧 shift+backspace 左侧删除 ctrl+shif

Mac_Sublime Text3(mac)一些插件和快捷键

下载地址http://www.sublimetext.com/3 一.安装Package Control 按Ctrl + ` 调出console,粘贴下列安装代码到底部命令行并回车: import urllib.request,os;pf='Package Control.sublime-package';ipp=sublime.installed_packages_path();urllib.request.install_opener(urllib.request.build_opener(

SublimeText2 快捷键

SublimeText2 快捷键,与对应功能一览表: 快捷键 功能 ctrl+shift+n 打开新Sublime ctrl+shift+w 关闭Sublime,关闭所有打开文件 ctrl+shift+t 重新打开最近关闭文件 ctrl+n 新建文件 ctrl+s 保存 ctrl+shift+s 另存为 ctrl+f4 关闭文件 ctrl+w 关闭 ctrl+k, ctrl+b 切换侧边栏显示状态 f11 切换全屏状态 shift+f11 免打扰模式状态切换 backspace 删除左侧 shi

Visual 2012 常用快捷键

快捷键 功能说明 Crtl+K,Crtl+C 注释光标所在行,或选中行 Crtl+K,Crtl+U 反注释光标所在行,或选中行 Crtl+K,Crtl+F 格式化全文 F12 转到定义 Shift +F12 查找所有引用 Crtl +F 查找 Crtl +H 替换 Crtl +L 删除光标所在行,或选中行 Crtl+M,Crtl+O 折叠所有函数定义 Crtl+M,Crtl+L 展开所有折叠 Crtl+G 转到特定行 Crtl+Z 撤销 Crtl+Y 反撤销 F9 加入或删除断点 F10/F11