WPF:图像点击

发布于 2024-09-16 09:11:56 字数 256 浏览 8 评论 0原文

在 WPF 中,我使用图像控件绘制图像:

<Image x:Name="Image1" Width="150" Height="180" VerticalAlignment="Bottom" HorizontalAlignment="Center" Stretch="None"/>

有时,图像比控件小。那么,仅当鼠标位于图像上而不是图像控件中的“非图像部分”上时,显示手形光标(并获取单击事件)的最佳解决方案是什么?

in WPF I draw an image with an Image Control:

<Image x:Name="Image1" Width="150" Height="180" VerticalAlignment="Bottom" HorizontalAlignment="Center" Stretch="None"/>

Sometimes, the image is smaller than the control. So, what would be the best solution to show an Hand cursor (and get Click-Events) only if the mouse is on the image and not on a "non image part" in the Image Control?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦在深巷 2024-09-23 09:11:56

一种解决方案可能是将图像控件放入 Canvas 中,并在添加图像时更改图像控件的高度和宽度以匹配实际图像。

然后,您不需要进行任何特殊处理来决定光标何时位于实际图像上。

One solution might be to put the image control inside a Canvas and, when the image is added, change the image control's height and width to match the actual image.

Then you don't need to do any special processing to decide when the cursor is over the actual image or not.

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