Just use the following line.
C#
Application.Current.Host.Content.IsFullScreen = true;
Entering full-screen mode in Silverlight has some restrictions. To ensure that it is initiated by the user entering full-screen mode is possible only in response to one of these input events: MouseLeftButtonDown. MouseLeftButtonUp, KeyDown, KeyUp.
That's it!