Reputation: 457
I have a silverlight video playing in the second monitor attached to my laptop. I want to work on my laptop screen and want silverlight video to remain in full screen mode.
Is there some configuration change i need to do on my laptop to make this work?
Upvotes: 1
Views: 3024
Reputation: 8593
Simple answer: you need to upgrade to Silverlight 4:
Full-Screen Support
Silverlight 4 enables applications to remain in full-screen mode when another application is active.
Update for programmers looking to check/enable this:
Application.Current.Host.Content.FullScreenOptions = System.Windows.Interop.FullScreenOptions.StaysFullScreenWhenUnfocused;
Upvotes: 2