How to Run your Application in full screen mode in Windows Phone 7 ?

In Windows Phone 7 , there is an area called System Tray on the Top of the screen where the information related to Signal strength and the Battery Level is shown .

You cannot add any icons or text to this area , so there will be a empty space on the top of your Application .

How to Run your Application in full screen mode in Windows Phone 7 ?

However , if you dont want to have the empty space and instead if your Application needs be run in full screen mode , you can set the SystemTray visibility to false .

SystemTray is a static class defined in the namespace “Microsoft.Phone.Shell” and you can set its IsVisible to false

private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)

{

          SystemTray.IsVisible = false;

}

When you run the Application now , you should see that your Application now utilizes the little space alloted for SystemTray .

How to Run your Application in full screen mode in Windows Phone 7 ?

You can also set this property via the xaml file too

How to Run your Application in full screen mode in Windows Phone 7 ?

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you’ll learn about the Win32 Error “0x000019E5 – ERROR_COULD_NOT_RESIZE_LOG” that you get when debugging system erors in...
In this post, you’ll learn about the error “CO_E_DBERROR 0x8004E02B” that is returned when working with COM based APIs or...
In this post, you’ll learn about the Win32 Error “0x000019D0 – ERROR_LOG_BLOCK_VERSION” that you get when debugging system erors in...