I have two displays. I want to make a media player and I want to play video full screen on my secondary display. So I’m trying to make a media player using WPF
Here is the code so far I wrote
Screen[] _screens = Screen.AllScreens;
System.Drawing.Rectangle ractagle = _screens[1].Bounds;
//player is my window
player.WindowState = WindowState.Maximized;
player.WindowStyle = WindowStyle.None;
player.Left = ractagle.X;
player.Top = ractagle.Y;
// MediaControl is an media elements
MediaControl.Height = ractagle.Height;
MediaControl.Width = ractagle.Width;
But somehow it’s just playing on my first display. Any kind of help is very much appreciated.