这是使用 RoutedCommand 的好例子吗?

发布于 2024-07-25 21:50:08 字数 374 浏览 8 评论 0原文

我有一个 WPF 页面,上面有 2 个 ContentControl。 两个 ContentControl 都有一个图像,其中一个比另一个小得多。 当鼠标悬停在较大图像上时,我想在较小图像上显示放大视图。 与此非常相似的东西: http://www.trekbikes.com /us/en/bikes/urban/soho/soho/

我想我希望较大的图像控件发送实际包含图像的内容 - 较小的图像控件将拾取并显示该图像。 这是利用 RoutedCommands 的好地方吗? 我可以传递这样的图像吗?

I have a WPF page that has 2 ContentControls on it. Both of the ContentControls have an image, one being much smaller than the other. When mouse over the larger image I want to show a zoomed in view on the smaller image. Something very similar to this: http://www.trekbikes.com/us/en/bikes/urban/soho/soho/.

I think I want the larger image control to send out something that actually contains an image - which the smaller image control would pick up and display. Would this be a good place to take advantage of RoutedCommands? Can I pass along an image like that?

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

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

发布评论

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

评论(1

爱给你人给你 2024-08-01 21:50:08

在这种情况下,RoatedCommands 似乎有点错位......您会希望鼠标能够平滑响应,而您最不希望的就是到处发出命令。

您最好使用 VisualBrush。 而 Ian Griffith 的示例此处是一个放大镜 ( WPF 中的早期规范 VisualBrush 示例)您可以轻松地调整它以显示图像的一部分。

RoutedCommands seem a bit misplaced in this case... you'll want the mouse to respond smoothly and the last thing you want are commands to be fired off here and there.

You're probably better off using a VisualBrush. While Ian Griffith's example here is a magnifying glass (an early canonical VisualBrush example in WPF) you could easily adapt it to show a portion of your image.

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