With the .NET framework 1.1, add this code to static Main:
Application.EnableVisualStyles();
Application.DoEvents();
With the .NET framework 1.0, you must add a manifest file.
Then for each control you want to theme, set the FlatStyle
to System
See MSDN for more information
|