修订版 | 3d3df42f8245826ac99c2973746b382d6ddd7f53 (tree) |
---|---|
时间 | 2022-02-18 09:37:41 |
作者 | yyagi <yyagi.dtxmania@gmai...> |
Commiter | yyagi |
#43899 DTXCreatorのHighDPI対応(宣言追加のみですが)
@@ -1,8 +1,28 @@ | ||
1 | 1 | <?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
2 | 2 | <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> |
3 | - <dependency> | |
3 | + <application xmlns="urn:schemas-microsoft-com:asm.v3"> | |
4 | + <windowsSettings> | |
5 | + <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware> | |
6 | + <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness> | |
7 | + </windowsSettings> | |
8 | + </application> | |
9 | + <dependency> | |
4 | 10 | <dependentAssembly> |
5 | 11 | <assemblyIdentity type="win32" name="Microsoft.VC90.CRT" version="9.0.21022.8" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity> |
6 | 12 | </dependentAssembly> |
7 | 13 | </dependency> |
14 | + <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> | |
15 | + <application> | |
16 | + <!-- Windows 10 --> | |
17 | + <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/> | |
18 | + <!-- Windows 8.1 --> | |
19 | + <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> | |
20 | + <!-- Windows 8 --> | |
21 | + <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> | |
22 | + <!-- Windows 7 --> | |
23 | + <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> | |
24 | + <!-- Windows Vista --> | |
25 | + <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> | |
26 | + </application> | |
27 | + </compatibility> | |
8 | 28 | </assembly> |
@@ -6,6 +6,9 @@ | ||
6 | 6 | <supportedRuntime version="v1.1.4322" /> |
7 | 7 | <supportedRuntime version="v1.0.3705" /> |
8 | 8 | </startup> |
9 | + <appSettings> | |
10 | + <add key="EnableWindowsFormsHighDpiAutoResizing" value="true" /> | |
11 | + </appSettings> | |
9 | 12 | |
10 | 13 | <runtime> |
11 | 14 | <loadFromRemoteSources enabled="true" /> |