Silverlight application for learning purpose
I saw this work which looked very good. Someone tell me or share your knowledge how to accomplish this.
http://www.moshafy.com/
Things want to know like.
1 - Has he used DB to load all the arabic scripts. Because these are not images or static text?
2 - How he has achived flipping of page?
3 -
Your feedback on making this kind of work like how to mange scripts? what should be image and what should be text from db? What if I want to add soud on the script when user select word or line? Any tutorials specific to quickly learn that kind of functionality? Anything you can share to help me explore more on that pa开发者_运维百科th.
Also posted here Silverlight forums but couldn't get much help.
thanks
1 - Stored the scripts as unicode in a DB or localized the application specifically for his language using the resource files (localization/globalication/CultureInfo)
2 - This can be achieved using TransitioningContentControl from SL Toolkit, aditinally there are commercial controls available that act as "book pages" too.
3 - storing the scripts as text is probably a more optimal solution then loading images, if you use images in your project, your .xap file's size will increase - thus the load time will be longer. As far as sound goes, media playback is possible in Silverlight, I've only tried with WMV files but I think mp3s are supported as well - if not WMA is probably supported.
精彩评论