after installing Eclipse and opening it, it was found that the icons were extremely small and could hardly be seen by the naked eye. This is due to the fact that eclipse does not fit into the high-split screen. Windows 10 's support for high-split screens is pretty good, Sophie 4 's screen resolution is 2736*1824, I've set a 200% zoom level, and the overall display works fine. But the display of many third-party apps is a mess, and eclise is in this column. After searching on the internet, we found a good solution, which can solve the problem of the display of Eclipse, MyEclipse, STS and other IDE under high split screen. I Window10 under the test, for Window8 and WINDOW7 should also be effective. The configuration steps are as follows: 1. Open the Registry (Win+r shortcut key to open the Run window, enter regedit, click OK to open), navigate to directory: Hkey_local_machine\software\microsoft\windows\ Currentversion\sidebyside\, then right-click in the right margin and select new->dword (32-bit) value, named Preferexternalmanifest, with a value of 1. 2, save the following XML content as eclipse.exe.manifest in the Eclipse.exe directory: (if it is myeclipse, The file name is Myeclipse.exe.manifest, and so on, the previous part is consistent with the IDE's execution file name) copy the code<?XML version= "1.0" encoding= "Utf-8"?> <Assemblyxmlns= "Urn:schemas-microsoft-com:asm.v1"Xmlns:asmv3= "Urn:schemas-microsoft-com:asm.v3"manifestversion= "1.0"> <Description>Eclipse</Description> <TrustInfoxmlns= "Urn:schemas-microsoft-com:asm.v2"> <Security> <requestedprivileges> <requestedExecutionLevelXmlns:ms_asmv3= "Urn:schemas-microsoft-com:asm.v3" Level= "AsInvoker"ms_asmv3:uiaccess= "false"> </requestedExecutionLevel> </requestedprivileges> </Security> </TrustInfo> <asmv3:application> <asmv3:windowssettingsxmlns= "Http://schemas.microsoft.com/SMI/2005/WindowsSettings"> <Ms_windowssettings:dpiawarexmlns:ms_windowssettings= "Http://schemas.microsoft.com/SMI/2005/WindowsSettings">False</Ms_windowssettings:dpiaware> </asmv3:windowssettings> </asmv3:application> </Assembly>copy code open eclipse try it!
Mac version win10 Eclipse icon too small, solution (2k display +win10)