Silverlight 4 和浏览器外
有谁知道是否可以对 app.current.mainwindow.width 进行动画处理,以便在以编程方式调整 oob 应用程序窗口大小时获得一个带有缓动的漂亮动画。 谢谢。
Does any one know if its possible to animate app.current.mainwindow.width so that you get a nice animation with easing if you programatically resize the oob apps window.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是向页面添加滑块控件。滑块可以折叠,仅用于具有简单的动画属性。对滑块的 Value 属性进行动画处理。在滑块的 ValueChanged 事件中更新窗口宽度。你需要增加推力才能做到这一点。
它看起来像这样:
Xaml
代码隐藏
The simplest way is to add a slider control to your page. The slider can be collapsed and is only used to have an easy propery to animate. Animate the Value property of the slider. In the ValueChanged event of the slider update the window width. You need elevated thrust to do this.
It looks something like this:
Xaml
Code Behind
您应该查看此 Channel 9 演示文稿以自定义窗口镶边在浏览器外支持中。您的应用程序需要更高的信任度才能自定义镶边,但这可能使您能够做您想做的事情。
You should check out this Channel 9 presentation for customizing the window chrome in out-of-browser support. Your application requires elevated trust to customize the chrome, but this might enable you to do what you want to do.