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

按键(ESC ,F1,F2等)——wpf的命令处理方法

时间:2015-06-18 12:51:25      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:

方法一:使用代码

  <WpfUI:View.CommandBindings>
        <CommandBinding Command="Help"
                        CanExecute="HelpCanExecute"
                        Executed="HelpExecuted"
                        />
    </WpfUI:View.CommandBindings>
技术分享
<WpfUI:View.InputBindings>
        <KeyBinding Command="Help" Key="F2" />
        <KeyBinding Command="NotACommand" Key="F1"/>
    </WpfUI:View.InputBindings>
 #region Command

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

        private void HelpExecuted(object sender, ExecutedRoutedEventArgs e)
        {
            System.Diagnostics.Process.Start("http://www.baidu.com");
        }

        #endregion Command
技术分享

构造函数

技术分享
  public TallyBookView()
        {
            InitializeComponent();

            this.InputBindings.Add(
                new KeyBinding(ApplicationCommands.Help, new KeyGesture(Key.F2)));
        }
技术分享

上面等同于如下代码:

按键(ESC ,F1,F2等)——wpf的命令处理方法

标签:

原文地址:http://www.cnblogs.com/changbaishan/p/4585256.html

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