You cannot set this property during instantiation. Typically you would switch to full-screen only as a user-initiated action and therefore you would set full-screen to true as part of a mouse or keyboard event handler.
A Silverlight plug-in can display in either embedded mode or full-screen mode:
In embedded mode, the plug-in displays within the Web browser.
In full-screen mode, the plug-in resizes to the current resolution of the screen and displays on top of all other applications.
For more information, see Full-Screen Support.
The FullScreenChanged event occurs whenever the IsFullScreen property changes. Full-screen mode also influences ActualHeight and ActualWidth.
Note: |
|---|
Performance Note: For best performance, when your application goes into full screen, hide or disconnect from the tree all of the objects that are not being rendered in full-screen mode. You can hide an object by setting its Visibility property to Collapsed. |