将 KeyUpEvent 从 UIElement 路由到 TextBox

发布于 2024-09-27 07:42:40 字数 421 浏览 2 评论 0原文

如何将 UIElementKeyUpEvent 事件路由到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云仙小弟 2024-10-04 07:42:40

想起来很简单:在 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 the textBoxWPF.Text property. If it's a backspace, make the textBoxWPF.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文