将 KeyUpEvent 从 UIElement 路由到 TextBox
如何将 UIElement
的 KeyUpEvent
事件路由到 WPF 中的 TextBox
?
例如,对于以下对象:
<Rectangle x:Name="rectangleWPF"></Rectangle>
<TextBox x:Name="textBoxWPF"></TextBox>
如果在 rectangleWPF 上按下“A”,则必须将“A”插入到 textBoxWPF 中。然后,如果在 rectangleWPF 上按退格键,textBoxWPF 应该不显示任何内容。
How do I route the KeyUpEvent
event for a UIElement
to a TextBox
in WPF?
For example with the following objects:
<Rectangle x:Name="rectangleWPF"></Rectangle>
<TextBox x:Name="textBoxWPF"></TextBox>
If an 'A' is pressed on rectangleWPF then an 'A' must be inserted into textBoxWPF. Then if a backspace is pressed on rectangleWPF, textBoxWPF should display nothing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想起来很简单:在
UIElement
的事件处理程序中,只需测试看看按下了哪个键。如果它是字母数字,请将其添加到textBoxWPF.Text
属性中。如果它是退格键,则使textBoxWPF.Text
属性成为其自身的子字符串,减去最后一个字符。如果这是您不想要(或不处理)的其他内容,请忽略它。当简单的事情可以更好地发挥作用时,没有理由实施一些魔法来重新路由事件。
Think simple: in your event handler for the
UIElement
, just test to see which key is pressed. If it's alphanumeric, add it to thetextBoxWPF.Text
property. If it's a backspace, make thetextBoxWPF.Text
property a substring of itself, minus the last character. If it's something else you don't want (or don't handle), ignore it.There's no reason to implement some magic to reroute events when something simple will work better.