使用滑块控件在 Silverlight 3 中轻松缩放图像
简单的问题,
SilverLight 3 应用程序(无工具包)。 我想使用图像和滑块。 图像在加载时显示为适合屏幕,然后滑块必须在其值发生变化时放大和缩小图像。我不想使用其他任何东西,比如 deepzoom。这怎么能做到呢?
紧急,提前致谢,
Simple question,
SilverLight 3 application (no toolkit).
I want to use an image and a slider.
The image is displayed fit to screen on load, and then the slider has to zoom-in and out the image when its value changes. I don't want to use anything else, like deepzoom. How can this be done?
Urgent, Thanks in advance,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面的 xaml 代码:
在 slidervaluechangedevent 上:
LayoutTransformer 在工具包中,添加其引用:
没有工具包,您可以做到这一点,但它无法正常工作(它永远不会更新滚动查看器)...尝试一下下面一个:
在滑块值更改事件上:
希望它有帮助:)....
The xaml code below :
And on the slidervaluechangedevent :
LayoutTransformer is ther in toolkit, add its reference:
Without having a toolkit, u can do it but it doesn't work properly(it will never update the scrollviewer)...try it the below one :
And on the slidervaluechangedevent :
Hope it helps :)....