Skip to main content
Home Forums Silverlight Programming Programming with .NET - General Full Screen mode
2 replies. Latest Post by Galaad on June 21, 2009.
(0)
Galaad
Member
152 points
75 Posts
06-21-2009 7:10 AM |
Hello everybody.
I've a Silverlight application, which is redimensionned in function of the user display resolution, trough a method. I've integrated a full screen method to. So, when I go in full screen mode, I invoke the method, and elements are redimensioned. But I've try to reinvoke the method when user quit the full screen mode, without success.
So, if somebody know how detect the end of the full screen mode, thank you :D
tanmoy.r
Contributor
3594 points
710 Posts
06-21-2009 7:20 AM |
Are you attaching an event like
App.Current.Host.Content.FullScreenChanged +=
and then at the handler
if (App.Current.Host.Content.IsFullScreen) { // fullscreen mode logic } else { //normal mode logic }
06-21-2009 9:05 AM |
Thank you, it's operative :D