c# - Full screen on many screen (WPF) -
I am using WPF
I think my windows take full screens of all screens Are there.
If I use the code snippet:
WindowState = WindowState.Normal; WindowStyle = WindowStyle.None; Top = true; WindowState = WindowState Maximum;
This only takes the active screen
How to maximize the screen fill? The state only fills one screen how Windows works in windows.
You can either create a separate window for every display or use the single window position on the minimum X / Y coordinate for all displays and change it again so that you can change each display . You have to note where the screen is on the surface of your window, however, there are such display configurations you will not expect, such as the following:
┌──────┐ │ │ │ │ │ ┌──────────┐ │ │ └──────┘ │ │ │ │ └ └ └ └ └──────────┘ │ └ └ ───────┘
If you only expect a rectangular setup then it is possible to handle the pain as well as possible.
Comments
Post a Comment