bhavesh
bhavesh

Reputation: 457

Keep silverlight video in full screen in a dual monitor configuration

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

Answers (1)

jv42
jv42

Reputation: 8593

Simple answer: you need to upgrade to Silverlight 4:

New features in 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

Related Questions