为什么我的表单看起来像'Windows Classic'?

时间:2011-06-24 10:02:59

标签: c# .net visual-studio windows-forms-designer skin

是否有任何免费工具可以为我的C#Windows窗体设置样式,使它们看起来像Windows 7 Windows。

**EDIT**

在设计师模式中,我有这个:

enter image description here

但是当我跑步时,我得到了这个:

enter image description here

我不知道为什么我会这样做。 (旧式)

由于

1 个答案:

答案 0 :(得分:38)

您应该启用视觉样式

Application.EnableVisualStyles Method

在创建任何控件之前调用此方法

[STAThread]
static void Main() 
{
    Application.EnableVisualStyles();
    Application.Run(new YourMainForm());
}
相关问题