狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

Winform 支持高DPI的幾種方式

admin
2023年11月21日 15:24 本文熱度 694

前言

    就基于目前的電腦而言,開發(fā)Winform界面真的是一鍵很頭疼的事,由于現(xiàn)在基本上都是高DPI,渲染出來的控件就會(huì)根據(jù)DPI進(jìn)行縮放,最后導(dǎo)致頁面布局混亂。

雖然在.Net Core Winform上,已經(jīng)可以直接通過設(shè)置Application.SetHighDpiMode來解決,但是在.Net Framework下,還是得通過其他方式。

以下方式可以按照官方文檔描述選擇性的采用或者全部使用。






開發(fā)環(huán)境:.NET Framework版本:4.8

開發(fā)工具:Visual Studio 2022


實(shí)現(xiàn)步驟

  1. 第一種方式就是添加程序清單文件,官方文檔上也有介紹過此方法,右鍵項(xiàng)目->添加->新建項(xiàng)->應(yīng)用程序清單文件(app.manifest)。

  1. 然后就可以看到文件中已經(jīng)寫好了注釋,其中有這樣一句話

指示該應(yīng)用程序可感知 DPI 且 Windows 在 DPI 較高時(shí)將不會(huì)對其進(jìn)行自動(dòng)縮放。Windows Presentation Foundation (WPF)應(yīng)用程序自動(dòng)感知 DPI,無需選擇加入。選擇加入此設(shè)置的 Windows 窗體應(yīng)用程序(面向 .NET Framework 4.6)還應(yīng)在其 app.config 中將 "EnableWindowsFormsHighDpiAutoResizing" 設(shè)置設(shè)置為 "true"
  1. 然后參考官網(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ù)需求自行抉擇
  2. 所以,最終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 清單選項(xiàng)        如果想要更改 Windows 用戶帳戶控制級別,請使用        以下節(jié)點(diǎn)之一替換 requestedexecutionLevel 節(jié)點(diǎn)。
       <requestedexecutionLevel  level="asInvoker" uiAccess="false" />        <requestedexecutionLevel  level="requireAdministrator" uiAccess="false" />        <requestedexecutionLevel  level="highestAvailable" uiAccess="false" />
       指定 requestedexecutionLevel 元素將禁用文件和注冊表虛擬化。        如果你的應(yīng)用程序需要此虛擬化來實(shí)現(xiàn)向后兼容性,則移除此        元素。        -->        <requestedexecutionLevel level="asInvoker" uiAccess="false" />      </requestedPrivileges>    </security>  </trustInfo>
 <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">    <application>      <!-- 設(shè)計(jì)此應(yīng)用程序與其一起工作且已針對此應(yīng)用程序進(jìn)行測試的      Windows 版本的列表。取消評論適當(dāng)?shù)脑兀?/span>      Windows 將自動(dòng)選擇最兼容的環(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 較高時(shí)將不會(huì)對其進(jìn)行  自動(dòng)縮放。Windows Presentation Foundation (WPF)應(yīng)用程序自動(dò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>
  1. 由于以上文檔涉及到了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>
  1. 第二種方式是采用Windows Api的方式,使用SetProcessDPIAware函數(shù),此函數(shù)可以參考Windows Api函數(shù)文檔(此文檔已上傳,請點(diǎn)擊文末小程序下載),描述如下:

將進(jìn)程默認(rèn) DPI 感知設(shè)置為系統(tǒng) DPI 感知。這等效于調(diào)用DPI_AWARENESS_CONTEXT值
為 DPI_AWARENESS_CONTEXT_SYSTEM_AWARE 的 SetProcessDpiAwarenessContext
  1. 同時(shí)文檔給出這樣一句話“SetProcessDPIAware 可能已更改或不可用。請改用 SetProcessDPIAwareness。”,但是其實(shí)不妨礙我們使用

  2. 將以上函數(shù)在Main函數(shù)中調(diào)用

internal static class Program    {
       [DllImport("user32.dll")]        public static extern bool SetProcessDPIAware();
       /// <summary>        /// 應(yīng)用程序的主入口點(diǎn)。        /// </summary>        [STAThread]        static void Main()        {            SetProcessDPIAware();            Application.EnableVisualStyles();            Application.SetCompatibleTextRenderingDefault(false);            Application.Run(new Form1());        }    }
  1. 結(jié)束


該文章在 2023/11/21 15:25:54 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲(chǔ)管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved