WPF 样式/模板/触发器:按下 EnterKey(文本框)时失去焦点
有没有办法定义一个样式/触发器/模板,一旦按下 Enter 键,就会导致文本框失去焦点?最好不使用任何代码...
谢谢!
Is there any way to define a style/trigger/template that will cause a textbox to lose focus once the Enter key is pressed? Preferably, without using any code...
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,WPF 中没有内置任何内容来执行此操作。您必须添加某种自定义代码来查找 Enter 键并手动移动焦点。
最简单的方法是使用附加行为。然后,您可以为所有或部分文本框启用此功能。
No, there's nothing baked into WPF to do that. You'd have to add some sort of custom code to look for the Enter key and move the focus manually.
The easiest way would be to use an attached behavior. You could then turn this feature on for all or some of the TextBoxes.