ruruhuang 发表于 2013-1-28 13:18:36

eclipse should enable XP visual styles if available (from comctl32.dll)

i can confirm this. i copied the following file to $JAVA_HOME/bin as
javaw.exe.manifest, and i magically got windows XP styles for all UI elements.

this is good enough for me :)


--snip---


<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestversion="1.0">
 <assemblyidentity<br>  version="1.0.0.0"
  processorArchitecture="X86"
  name="SWT.javaw"
  type="win32"/>
 <description>Standard Widget Toolkit</description>
 <dependency>
  <dependentassembly>
   <assemblyidentity<br>    type="win32"
    name="Microsoft.Windows.Common-Controls"
    version="6.0.0.0" processorArchitecture="X86"
    publicKeyToken="6595b64144ccf1df"
    language="*"/>
  </dependentassembly>
 </dependency>
</assembly> see https://bugs.eclipse.org/bugs/show_bug.cgi?id=45918
页: [1]
查看完整版本: eclipse should enable XP visual styles if available (from comctl32.dll)