Getting your Silverlight application to show full screen is easy. Just set the following property:

Application

.Current.Host.Content.IsFullScreen = true; This property can only be set after a user-action, like a mouse click or button click. Setting the IsFullScreen property in the OnLoad of your Silverlight application won't work. Silverlight will ignore this.