Класс Screen
предоставит вам информацию обо всех экранах.Не сделав этого раньше, я бы попробовал что-то вроде:
int windowPosX = Screen.PrimaryScreen.WorkingArea.Left;
int windowPosY = Screen.PrimaryScreen.WorkingArea.Top;
int windowWidth = Screen.PrimaryScreen.WorkingArea.Width;
int windowHeight = Screen.PrimaryScreen.WorkingArea.Height;
foreach (Screen s in Screen.AllScreens)
if (!s.Primary)
windowWidth += s.Bounds.Width;
// Set the window's left, top, width and height properties accordingly