Making Form Desinger stuff "look XP"

You can enable XP theming on your applications by giving them a manifest file. There is information in MSDN on how to do this.
 
If you're talking about making them look XP at design time, we did this by adding the manifest in the VS directory, and it worked, but we removed it shortly thereafter for some reason that escapes right now. It was a bad idea as I recall -- somehow made things break.
 
Yes, the purpose of the manifest file is to tell windows to use Common Controls 6 if it's available, regardless of what version then application was compiled with.

And regarding quwiltw's comments, adding a manifest file to the IDE is a very bad idea. It actually changes the way the IDE serializes resources, so you'll never know there's a problem when you open your solution on your computer, but as soon as you give it to someone without that manifest, they won't be able to read the serialized resources properly.
 
some controls in .net id say isn't really well designed for the XP OS
i mean the notify tray doesnt support balloons

the toolbars dont support the gradient background
and the tab controls differ from the ones programed inside windows xp windows
 
Back
Top