Developers / Create Designer and Viewer Applications / End User Report Designer in WinForms Application / Set High DPI Support
Set High DPI Support

The End User Report Designer application requires specifying the SetHighDpiMode configuration to support the high DPI displays. To enable high DPI displays in a .NET6 application, use the following code.

C#
Copy Code
Application.SetHighDpiMode(HighDpiMode.DpiUnawareGdiScaled);