Why do my forms look like 'Windows Classic'?
Is there any free tool to style my C# Windows Forms, to make them look like Windows 7 Windows.
**EDIT**
In the designer mode, I have this :
But when I run I get this :
I don't 开发者_Go百科know why I get that. (Old style)
Thanks
You should enable visual styles
look Application.EnableVisualStyles Method
Call this method before creating any controls
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.Run(new YourMainForm());
}
精彩评论