测试 Silverlight 启动画面
我在 Silverlight 中创建了一个闪屏,但我的项目加载速度太快,以至于我从来没有机会测试它。我应该如何确保它正常工作?
I have created a splashscreen in Silverlight, but my project loads so quickly that I never have a chance to test it. How should I go about ensuring it is working?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是在分配给
RootVisual
之前,在App.Startup
事件处理程序中添加对Thread.Sleep()
的调用>。您的启动屏幕至少会在您睡觉时保持开启状态。The easiest way to do this is to add a call to
Thread.Sleep()
in yourApp.Startup
event handler, before you assign toRootVisual
. Your splash screen will stay up for at least as long as you sleep for.