WP 7.5 - 是否可以创建一个小型预加载器项目?
我想为 Windows Phone 创建一个 shell/预加载器项目,如下所示: http://pagebrooks.com/archive /2009/05/17/a-smaller-xap-preloader-for-silverlight.aspx
这里的问题是 AssemblyPart.Load() 在手机上不存在。还有其他方法可以在 WP Mango 上创建类似的系统吗?
I would like to create a shell/preloader project for Windows Phone like the following:
http://pagebrooks.com/archive/2009/05/17/a-smaller-xap-preloader-for-silverlight.aspx
The issue here is that AssemblyPart.Load() doesn't exist on the phone. Is there another way to create a similar system on WP Mango?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们是让用户看起来像是在应用程序中并在后台下载重型资源的方法。
我最近的应用程序打开时会显示一张图像,单击时会进入动画状态。允许在后台下载内容,使其更加用户友好。
这绝对是个人喜好,做一个动画,然后显示一个小弹出窗口,显示“内容加载”,但在动画之前启动加载过程。允许内容加载的时间更少。
最好的选择是尝试不同的事情,找到最适合你的。
另一方面,无法在 Windows Phone 上访问 AssemblyPart.Load()。
我希望这会有所帮助。 :)
Their are ways to give the appearance of being in the application and downloading the Heavy assets in the background.
My recent app opens with an image and when clicked, goes into animation. allowing things to download in the background making it more user friendly.
This is definitely more personal preference than anything,do an animation then host a small pop-up saying "Content Loading" but start the loading process before the animation. Allowing the content Load to be less time.
Your best bet is to try different things, and find what works best for you.
On another note, it isn't possible to access AssemblyPart.Load() on the windows Phone.
I hope this helps a little. :)