PowerTools PlusPak for Windows Forms 8.0J > PlusPakの概要 > 8.0Jの新機能 |
DPIスケーリングによる拡大について、アプリケーションの実行時に150%や200%の高DPIをサポートします。これらの高DPIは.NET Framework 4.5.2が利用可能で、かつapp.manifestおよびapp.configに以下のような設定がされている場合に有効です。
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"> <asmv3:application> <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> <dpiAware>true</dpiAware> </asmv3:windowsSettings> </asmv3:application> </assembly>
<?xml version="1.0" encoding="utf-8" ?> <configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /> </startup> <appSettings> <add key="EnableWindowsFormsHighDpiAutoResizing" value="true" /> </appSettings> </configuration>
![]() DPI 200%の7.0Jコントロール |
![]() DPI 200%の8.0Jコントロール |
![]() 配色の設定 |