Idea behind implementation To create SplashScreen with ProgressBar idea is to put a popup visible till start page is ready. Open user control in popup Cut Splash Screen image with dimension 800×460 from the popup Make visible popup till start page of the application is not ready Create User Control Very first you need toContinueContinue reading “How to create Splash Screen with Progress Bar in Windows Phone 7”
Tag Archives: windows phone 7
Video on How to work with WrapPanel in Windows Phone 7
Read more here If you find my posts useful you may like to follow me on twitter http://twitter.com/debug_mode or may like Facebook page of my blog http://www.facebook.com/DebugMode.Net If you want to see post on a particular topic please do write on FB page or tweet me about that, I would love to help you.
How to work with WrapPanel in Windows Phone 7
In this post I will show you the various way of working with WrapPanel in Windows Phone 7 application. I will discuss Basic working of WrapPanel WrapPanel with ScrollBar Using WrapPanel in a ListBox WrapPanel comes as part of Silverlight for Windows Phone Toolkit. You can download it from here . You need to installContinueContinue reading “How to work with WrapPanel in Windows Phone 7”
How to navigate to other page from a user control in Windows Phone 7
Let us say, you have a scenario to navigate from user control In code behind of the user control very first put below namespace, Next globally define an event as below, After this you need to create a method to handle page navigation event as below. This function is taking URI to navigate as inputContinueContinue reading “How to navigate to other page from a user control in Windows Phone 7”
Video on How to work with Picture in Windows Phone 7
Read more here
Code to disable hardware Back Button in Windows Phone 7
You can come across requirement when you need to disable hardware back button in Windows Phone 7. If you want to disable hardware back button on Page1 then you need to override OnBackKeyPress method on Page1. To disable you need to make CancelEventArgs value to cancel as given below, If you want you can displayContinueContinue reading “Code to disable hardware Back Button in Windows Phone 7”
Video on How to work with Page Navigation and Back Button in Windows Phone 7
Code to make call in Windows Phone 7
Launchers are used to perform task provided by phone operating system. Making Call is feature of Windows phone operating system and can be used by Launcher API. PhoneCallTask launcher is used to call. This launcher class is defined as below, To work with PhoneCallTask, first you need to add namespace of Microsoft.Phone.Task Then createContinueContinue reading “Code to make call in Windows Phone 7”