赞
踩
在工具栏中找到程序包管理器控制台
在控制台中打上这句话
Install-Package MaterialDesignThemes
然后直接回车 等后为项目安装控件库
安装完成后 双击app.xaml文件
在<Application.Resources>标签中中加上这些代码
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Light.xaml" />
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Primary/MaterialDesignColor.DeepPurple.xaml" />
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Accent/MaterialDesignColor.Lime.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
加上以后如下图
然后再打开MainWindow.xaml添加控件 发现控件都已经自动加上了material风格了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。