缩放控制至 SilverLight Form

发布于 2024-12-05 05:49:11 字数 85 浏览 2 评论 0 原文

我仍然没有找到答案:如何为我的 SilverLight Form 实现缩放控件? 我希望您能帮助我解决这个问题)我希望缩放缩放控件内的控件,而不是缩放图像。

I still have not found the answer: How can I implement a zoom control to my SilverLight Form?
I hope you will help me with this question) I am looking to zoom the controls inside the zoom control, not zoom on an image.

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

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

发布评论

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

评论(3

绮烟 2024-12-12 05:49:11

This is a WPF control that zooms the child controls. Should be fairly easy to convert to Silverlight.

Here is a silverlight control that does the same thing:

小霸王臭丫头 2024-12-12 05:49:11

在 RenderTransform 中使用 ScaleTransform

<Grid.RenderTransform>
    <TransformGroup>
        <ScaleTransform ScaleX="1"/>
    </TransformGroup>
</Grid.RenderTransform>

http://ganshani.com/ 2009/08/14/zoom-in-and-out-in-silverlight/

编辑:另一个链接不起作用。这是互联网存档版本

With ScaleTransform in RenderTransform

<Grid.RenderTransform>
    <TransformGroup>
        <ScaleTransform ScaleX="1"/>
    </TransformGroup>
</Grid.RenderTransform>

http://ganshani.com/2009/08/14/zoom-in-and-out-in-silverlight/

Edit: the other link doesn't work. Here is the internet archive version.

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