Silverlight Full Screen Support
Silverlight applications can display in two different modes.
*In Embedded Mode, the Silverlight application displays within the content area of a web page. *Full-Screen Mode, the Silverlight application occupies the entire screen and displays on top of all other running applications.
To switch modes, we simply set the Content.
IsFullScreen property in the System.Windows.Interop namespace. For example, the following line sets the Silverlight application to full screen mode:
Content.IsFullScreen = true;
*In Embedded Mode, the Silverlight application displays within the content area of a web page. *Full-Screen Mode, the Silverlight application occupies the entire screen and displays on top of all other running applications.
To switch modes, we simply set the Content.
IsFullScreen property in the System.Windows.Interop namespace. For example, the following line sets the Silverlight application to full screen mode:
Content.IsFullScreen = true;
Comments
Post a Comment