你如何绑定Enter和Esc键确定,分别在WPF对话框中取消按钮?绑定、按钮、对话框中、分别在

2023-09-03 05:40:11 作者:奶油味拥抱

我的WPF应用程序使用带有确定和取消按钮的对话框。我想绑定Enter键到OK按钮,Esc键取消按钮。好像它应该是一个简单的事情。

My WPF app uses a dialog with Ok and Cancel buttons. I would like to bind the Enter key to the Ok button and the Esc key to the Cancel button. Seems like it should be a simple thing to do.

推荐答案

尝试将 ISDEFAULT 属性确定按钮为true,而 IsCancel 财产上的取消按钮为true。

Try setting the IsDefault property on the ok button to true, and the IsCancel property on the cancel button to true.