I want my silverlight app to run in full screen (disabling the battery/signal bar up there)

I tried:

Application.Current.Host.Content.IsFullScreen = true;

But it doesn't work, how can I be able to do that?

link|improve this question

69% accept rate
feedback

1 Answer

up vote 4 down vote accepted

You need to set the SystemTray to invisible

xaml (in the page declaration):

xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
shell:SystemTray.IsVisible="False"

code:

SystemTray.IsVisible = false;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.