前言
就基于目前的電腦而言,開發(fā)Winform界面真的是一鍵很頭疼的事,由于現(xiàn)在基本上都是高DPI,渲染出來的控件就會根據(jù)DPI進行縮放,最后導(dǎo)致頁面布局混亂。
雖然在.Net Core Winform上,已經(jīng)可以直接通過設(shè)置Application.SetHighDpiMode
來解決,但是在.Net Framework下,還是得通過其他方式。
以下方式可以按照官方文檔描述選擇性的采用或者全部使用。
開發(fā)環(huán)境:.NET Framework版本:4.8
開發(fā)工具:Visual Studio 2022
實現(xiàn)步驟
第一種方式就是添加程序清單文件,官方文檔上也有介紹過此方法,右鍵項目->添加->新建項->應(yīng)用程序清單文件(app.manifest)。
然后就可以看到文件中已經(jīng)寫好了注釋,其中有這樣一句話
指示該應(yīng)用程序可感知 DPI 且 Windows 在 DPI 較高時將不會對其進行自動縮放。Windows Presentation Foundation (WPF)應(yīng)用程序自動感知 DPI,無需選擇加入。選擇加入此設(shè)置的 Windows 窗體應(yīng)用程序(面向 .NET Framework 4.6)還應(yīng)在其 app.config 中將 "EnableWindowsFormsHighDpiAutoResizing" 設(shè)置設(shè)置為 "true"
然后參考官網(wǎng)高DPI支持:
https://learn.microsoft.com/zh-cn/dotnet/desktop/winforms/high-dpi-support-in-windows-forms?view=netframeworkdesktop-4.8,可以將Win10的相關(guān)屬性也去掉,其他根據(jù)需求自行抉擇所以,最終app.manifest
文件內(nèi)容如下
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC 清單選項
如果想要更改 Windows 用戶帳戶控制級別,請使用
以下節(jié)點之一替換 requestedexecutionLevel 節(jié)點。
<requestedexecutionLevel level="asInvoker" uiAccess="false" />
<requestedexecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedexecutionLevel level="highestAvailable" uiAccess="false" />
指定 requestedexecutionLevel 元素將禁用文件和注冊表虛擬化。
如果你的應(yīng)用程序需要此虛擬化來實現(xiàn)向后兼容性,則移除此
元素。
-->
<requestedexecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- 設(shè)計此應(yīng)用程序與其一起工作且已針對此應(yīng)用程序進行測試的
Windows 版本的列表。取消評論適當?shù)脑兀?/span>
Windows 將自動選擇最兼容的環(huán)境。-->
<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
<!-- Windows 10 -->
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
</application>
</compatibility>
<!-- 指示該應(yīng)用程序可感知 DPI 且 Windows 在 DPI 較高時將不會對其進行
自動縮放。Windows Presentation Foundation (WPF)應(yīng)用程序自動感知 DPI,無需
選擇加入。選擇加入此設(shè)置的 Windows 窗體應(yīng)用程序(面向 .NET Framework 4.6)還應(yīng)
在其 app.config 中將 "EnableWindowsFormsHighDpiAutoResizing" 設(shè)置設(shè)置為 "true"。
將應(yīng)用程序設(shè)為感知長路徑。請參閱 https://docs.microsoft.com/windows/win32/fileio/maximum-file-path-limitation -->
-->
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
</windowsSettings>
</application>
<!-- 啟用 Windows 公共控件和對話框的主題(Windows XP 和更高版本) -->
<!--
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
-->
</assembly>
由于以上文檔涉及到了App.config
文件的修改,所以應(yīng)在文件中添加以下內(nèi)容
<System.Windows.Forms.ApplicationConfigurationSection>
<add key="DpiAwareness" value="PerMonitorV2" />
</System.Windows.Forms.ApplicationConfigurationSection>
<appSettings>
<add key="EnableWindowsFormsHighDpiAutoResizing" value="true" />
</appSettings>
第二種方式是采用Windows Api的方式,使用SetProcessDPIAware
函數(shù),此函數(shù)可以參考Windows Api函數(shù)文檔(此文檔已上傳,請點擊文末小程序下載),描述如下:
將進程默認 DPI 感知設(shè)置為系統(tǒng) DPI 感知。這等效于調(diào)用DPI_AWARENESS_CONTEXT值為 DPI_AWARENESS_CONTEXT_SYSTEM_AWARE 的 SetProcessDpiAwarenessContext
同時文檔給出這樣一句話“SetProcessDPIAware 可能已更改或不可用。請改用 SetProcessDPIAwareness。”,但是其實不妨礙我們使用
將以上函數(shù)在Main函數(shù)中調(diào)用
internal static class Program
{
[DllImport("user32.dll")]
public static extern bool SetProcessDPIAware();
[STAThread]
static void Main()
{
SetProcessDPIAware();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
結(jié)束
該文章在 2023/11/21 15:25:54 編輯過