监控wpf中的鼠标移动事件
我正在尝试监视鼠标在应用程序窗口上的移动 这样,每当鼠标移动时,其坐标都会反映在两个文本控件中
是否可以仅在 XAML 中执行此操作(无需代码)?
I'm trying to monitor the mouse movement over the application window
so that whenever the mouse moves its coordinates are reflected in two text conrols
Is it possible to do it in XAML only (without code)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,你必须编写代码。只能通过调用 Mouse.GetPosition 方法获取鼠标位置。这不是您可以在 XAML 中表示的内容。
No, you have to write code. Getting mouse position is only doable by calling the Mouse.GetPosition method. This isn't something you can represent in XAML.