Win XP style in designer window of VS.Net 2003
Cheers
Cheers
Create manifest file for your devenv.exe as well, and name it devenv.exe.manifest, then restart your IDE. Finally, set the FlatStyle property of your control to "System" for the controls to have XP Visual styles at design-time.
-chris
My devenv.exe.manifest:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="7.10.3088.0"
processorArchitecture="X86"
name="devenv.exe"
type="win32" />
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="X86"
publicKeyToken="6595b64144ccf1df"
language="*" />
</dependentAssembly>
</dependency>
</assembly>
Any clue what I am doing wrong?
Regards, Christoph