WindowsXPのビジュアルスタイルに対応するには、以下のマニフェストファイルをアプリケーションにインクルードするか、同じフォルダに置いておくと可能になります。
そして、ファイル名を次のようにして以下のマニフェストファイルを保存します。
Appname.exe.manifest
(Appnameはアプリケーションの名前です)
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<description></description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="X86"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
</assembly>