You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is my code. I want a window to be full screen across multiple screens, but I found that when I use the following screen arrangement and scaling, it doesn't work correctly。
public MainWindow()
{
InitializeComponent();
Width = SystemParameters.VirtualScreenWidth;
Height = SystemParameters.VirtualScreenHeight;
Left = SystemParameters.VirtualScreenLeft;
Top = SystemParameters.VirtualScreenTop;
Console.WriteLine($"Left:{Left},Top:{Top},Width:{Width},Height:{Height}");
}
My project has PerMonitorV2 DPI awareness enabled and My project use .netframework 4.8.
The text was updated successfully, but these errors were encountered:
huangbaohua11
changed the title
window can not display fullscreen on multiscreen
A window cannot go full screen properly across multiple screens
Oct 15, 2024
Here is my code. I want a window to be full screen across multiple screens, but I found that when I use the following screen arrangement and scaling, it doesn't work correctly。
My project has PerMonitorV2 DPI awareness enabled and My project use .netframework 4.8.
The text was updated successfully, but these errors were encountered: