当前位置:   article > 正文

C# WPF程序添加Material风格控件库_c#materialdesignthemes

c#materialdesignthemes

新建一个WPF项目

在这里插入图片描述
在这里插入图片描述

安装和配置控件库

在工具栏中找到程序包管理器控制台
在这里插入图片描述
在控制台中打上这句话
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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

加上以后如下图
在这里插入图片描述
然后再打开MainWindow.xaml添加控件 发现控件都已经自动加上了material风格了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/582806
推荐阅读
相关标签
  

闽ICP备14008679号