WPF学习笔记-如何按ESC关闭窗口

如何按ESC关闭窗口?

在InitializeComponent();下面增加KeyDown事件,如:

复制代码
     public ModifyPrice()
        {
            InitializeComponent();
            this.KeyDown += ModifyPrice_KeyDown;
        }

        private void ModifyPrice_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.Key == Key.Escape)//Esc键  
            {
                this.Close();
            }
        }
复制代码

 

posted @   在路上的愚人  阅读(4504)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示