diff --git a/embedding-reports/display-reports-in-applications/windows-forms-application/overview.md b/embedding-reports/display-reports-in-applications/windows-forms-application/overview.md
index 6f5081254..11decd0f4 100644
--- a/embedding-reports/display-reports-in-applications/windows-forms-application/overview.md
+++ b/embedding-reports/display-reports-in-applications/windows-forms-application/overview.md
@@ -85,6 +85,19 @@ It is recommended that you declare a DPI-aware application by adding a `dpiAware
````
+For .NET applications, you need to ensure Windows 10 compatibility in the manifest file, as elaborated in the Microsoft article [High DPI support in Windows Forms](https://learn.microsoft.com/en-us/dotnet/desktop/winforms/high-dpi-support-in-windows-forms):
+
+````XML
+
+
+
+
+
+
+
+
+````
+
As of Windows 10 Anniversary Update, the Windows runtime has improved the UX for Windows Forms applications that are not DPI-aware. However, this behavior may lead to incorrect calculations of the interactive item positions and it is recommended that you always declare the Windows Forms application as DPI-aware. For more information about DPI-aware desktop applications, refer to the [High DPI Desktop Application Development on Windows](https://learn.microsoft.com/en-us/windows/win32/hidpi/high-dpi-desktop-application-development-on-windows) MSDN article.
## Keyboard Shortcuts
diff --git a/knowledge-base/windows-forms-report-viewer-scaling-issues-on-higher-dpi.md b/knowledge-base/windows-forms-report-viewer-scaling-issues-on-higher-dpi.md
index d67cc5a4e..7f411d401 100644
--- a/knowledge-base/windows-forms-report-viewer-scaling-issues-on-higher-dpi.md
+++ b/knowledge-base/windows-forms-report-viewer-scaling-issues-on-higher-dpi.md
@@ -22,34 +22,80 @@ res_type: kb
| Report Viewer |
- Win Viewer |
+ WinForms Viewer |
## Description
-When using [Windows Forms Report Viewer]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/windows-forms-application/overview%}) on a machine with DPI scale factor higher than 96 (100%), Windows will resize the bitmap images in the application according to the current DPI value. This makes the report viewer and the report content blurry or is sized incorrectly in many common usage scenarios. Also, when printing the report, the application will scale the report contents incorrectly, because it cannot detect the current machine's DPI settings and the DPI value will always be reported as 96 dots per inch.
+When using [Windows Forms Report Viewer]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/windows-forms-application/overview%}) on a machine with a DPI scale factor higher than 96 (100%), Windows will resize the bitmap images in the application according to the current DPI value. This makes the report viewer and the report content blurry or incorrectly sized in many common usage scenarios. Also, when printing the report, the application will scale the report contents incorrectly, because it cannot detect the current machine's DPI settings, and the DPI value will always be reported as 96 dots per inch.
## Cause\Possible Cause(s)
-By default, WinForms applications are declared as DPI Unaware. Declaring the application in which the Windows Forms Report Viewer is used as `DPI-aware` application would resolve the issues.
+By default, WinForms applications are declared as DPI-unaware. Declaring the application in which the Windows Forms Report Viewer is used as a `DPI-aware` application would resolve the issues.
## Solution
-The recommended approach is setting the `dpiAware` element in your application to avoid further scaling, visual or interaction issues. To do so, you have to add a manifest file at the root of the application with the following content:
+The recommended approach is to set the `dpiAware` element in your application to avoid further scaling, visual, or interaction issues. To do so, you have to add a manifest file at the root of the application with the following content:
-````XML
+* .NET Framework:
+
+ ````XML
-
-
-
-
- True/PM
-
-
-
+
+
+
+
+ True/PM
+
+
+
+````
+
+* .NET:
+
+ Ensure Windows 10 compatibility in the manifest file, as elaborated in the Microsoft article [High DPI support in Windows Forms](https://learn.microsoft.com/en-us/dotnet/desktop/winforms/high-dpi-support-in-windows-forms):
+
+ ````XML
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true/PM
+
+
+
+
+
+
````
+
## Notes
For reference, check our demos located in the Telerik Reporting installation folder, for example: *C:\Program Files (x86)\Progress\Telerik Reporting \Examples\CSharp|VB\WinFormsDemo*. The `dpiAware.manifest` file is placed at the root of the application.