sonicbabbler
sonicbabbler

Reputation: 851

Prevent SystemTray from auto hiding

Is there any way to prevent the systemtray from auto hiding? I have this set on the xaml but it you need to click on the area, it then shows it and then shortly afterwards it auto-hides it.

shell:SystemTray.IsVisible="true

Upvotes: 0

Views: 261

Answers (1)

Loránd Biró
Loránd Biró

Reputation: 856

There is no way to alter the hiding behavior of the system tray, but what data you want to display constantly? Unfortunately there is no way to directly access the signal strength or battery life, so there is no other way to display these things to the user, but you can use the NetworkInterface class to get information about which kind of network he's connected to.

http://msdn.microsoft.com/en-us/library/microsoft.phone.net.networkinformation.networkinterface.networkinterfacetype(v=vs.92).aspx

Upvotes: 2

Related Questions