From d8e3d692ec863579074d4002f0bb8d88803020bf Mon Sep 17 00:00:00 2001 From: "Nic Champagne Williamson [MSFT]" <45700886+champnic@users.noreply.github.com> Date: Mon, 22 Aug 2022 13:04:42 -0700 Subject: [PATCH] Fix Winforms High DPI sample configuration We got pinged on the WebView2 repo about a bug in the HighDPI sample that was confusing our users: https://github.com/MicrosoftEdge/WebView2Feedback/issues/1700#issuecomment-1221610180 Here's the related issue on the dotnet/docs-desktop repo: https://github.com/dotnet/docs-desktop/issues/1485 The fix is to change the tag with the correct tag. --- .../framework/winforms/high-dpi-support-in-windows-forms.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotnet-desktop-guide/framework/winforms/high-dpi-support-in-windows-forms.md b/dotnet-desktop-guide/framework/winforms/high-dpi-support-in-windows-forms.md index 4ec6ed3dbf..147474236b 100644 --- a/dotnet-desktop-guide/framework/winforms/high-dpi-support-in-windows-forms.md +++ b/dotnet-desktop-guide/framework/winforms/high-dpi-support-in-windows-forms.md @@ -46,14 +46,14 @@ In addition, to configure high DPI support in your Windows Forms application, yo Windows Forms introduces a new [``](/dotnet/framework/configure-apps/file-schema/winforms/index) element to support new features and customizations added starting with the .NET Framework 4.7. To take advantage of the new features that support high DPI, add the following to your application configuration file. ```xml - + - + ``` > [!IMPORTANT]