zoukankan      html  css  js  c++  java
  • wpf创建命令代码,实现一个清空的命令

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    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.Shapes;
    
    namespace wpf控件互相绑定
    {
        /// <summary>
        /// Window1.xaml 的交互逻辑
        /// </summary>
        public partial class Window1 : Window
        {
    
            
            public Window1()
            {
                InitializeComponent();
                InitCommand();
    
                if (string.IsNullOrEmpty(txt.Text))  //判断是否为空
                {
                    this.btn1.IsEnabled = false;
                }
                else
    
                {
                    this.btn1.IsEnabled = true;
                }
                
            }
            RoutedCommand rc = new RoutedCommand("clear", typeof(Window1));
            public void InitCommand()
            {
                btn1.Command = rc;
                rc.InputGestures.Add(new KeyGesture(Key.C,ModifierKeys.Alt));  //定义快捷键
                btn1.CommandTarget = txt;
    
                CommandBinding cb=new CommandBinding ()
                {
                    Command =rc,
                };
    
    
                cb.CanExecute+=cb_CanExecute;
                cb.Executed += cb_Executed;
    
                sp.CommandBindings.Add(cb);
            }
    
            private void cb_CanExecute(object sender, CanExecuteRoutedEventArgs e)
            {
                if (string.IsNullOrEmpty(txt.Text))
                {
                    e.CanExecute = false;
                }
                else
                {
                    e.CanExecute = true;
                }
                e.Handled = true;
            }
            void cb_Executed(object sender, ExecutedRoutedEventArgs e)
            {
                txt.Clear();
                e.Handled = true;
            }
           
    
            private void Button_Click_1(object sender, RoutedEventArgs e)
            {
    
            }
    
        }
    }
  • 相关阅读:
    分布式架构总汇【转】
    spring注解
    lombok安装和使用
    dubbo配置
    关于dubbo的负载均衡
    maven工作的过程
    android基础---->子线程更新UI
    JavaScript中有时候需要获取当前的时间戳
    Ubuntu 安装mysql
    nodejs 语法很特别的地方
  • 原文地址:https://www.cnblogs.com/275147378abc/p/4607626.html
Copyright © 2011-2022 走看看