# Set High DPI Support

This topic provides a code sample for the End User Designer application to support hiDPI in .NET6.

## Content



The End User Report Designer application requires specifying the [SetHighDpiMode](https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.application.sethighdpimode?view=windowsdesktop-7.0) configuration to support the high DPI displays. To enable high DPI displays in a .NET6 application, use the following code.

```csharp
Application.SetHighDpiMode(HighDpiMode.DpiUnawareGdiScaled);
```