How can you program a dotNet Windows (or WPF) Application in order to let it going fullscreen on the secondary monitor?
In WPF: Set the WindowState property in Normal (not Maximixed) and create the event Loaded. In the event write this code:
this.Left = SystemParameters.PrimaryScreenWidth + 100; this.WindowState = System.Windows.WindowState.Maximized;