admin 管理员组

文章数量: 887021

方法一:Aero, Classic, Luna, Royale主题(参考地址:https://blog.csdn/ppsurcao/article/details/8825249)

<Application.Resources>
        <ResourceDictionary Source="/PresentationFramework.Aero, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35;component/themes/aero.normalcolor.xaml" />
    </Application.Resources>

方法二:

1.重写控件样式。

2.填加如下代码:

public partial class App : Application
    {
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);
            System.Windows.Forms.Application.EnableVisualStyles();
        }
    }

本文标签: 控件 样式 程序 系统 XP