在使用MaterialDesign前需在Nuget包管理器中添加MaterialDesignThemes包,并在启动文件APP.xaml中添加MaterialDesign的引用
<Application x:Class="WpfApp1.App"Note:PrimaryColor为主题色,改变PrimaryColor属性即可改变MaterialDesign控件主题颜色。制作 一个简单的窗体,运行效果如下
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApp1"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:prism="http://prismlibrary.com/"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<materialDesign:BundledTheme BaseTheme="Light" PrimaryColor="Orange" SecondaryColor="Lime" />
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
- 本文标题: WPF 使用MaterialDesign(开源UI控件库)
- 文章分类:【WinForm/WPF】
- 非特殊说明,本文版权归【胡同里的砖头】个人博客 所有,转载请注明出处.
- 上一篇:WPF之EXCEL导入导出的分享
- 下一篇: materialdesign之Tree动态加载