Switch to full screen can be achieved by just one line of coding. However, please note that the method can be called under certain user interaction, such as Mouse Click.
View Demo: New Window
Switch to full screen in C#:
private void FullScreen_Click(object sender, RoutedEventArgs e)
{
// This can be called upon a mouse event
Application.Current.Host.Content.IsFullScreen = !Application.Current.Host.Content.IsFullScreen;
}
Download: http://www.shinedraw.com/?dl_id=63






