Duplicate a window in all screens

后端 未结 1 1901
星月不相逢
星月不相逢 2020-12-22 02:59

In a multi-monitor environment, how can I display a form on all the screens? Is it possible to get handles to the different screens available, and display a form in a differ

1条回答
  •  礼貌的吻别
    2020-12-22 03:13

    A multi-monitor system effectively has a single, very large display area.
    There is nothing different about a point in a different monitor; it will just be far to the right of the previous monitor.

    You can use the Screen class to find all of the user's screens.

    You can loop through Screen.AllScreens and create a new instance of the form for each screen, setting it's location to a point within that screen's WorkingArea.

    0 讨论(0)
提交回复
热议问题