当前位置:   article > 正文

使用Material Design(一)_materialdesignthemes 3.0.1

materialdesignthemes 3.0.1

创建一个Material Design项目

新建WPF项目

框架选择
选择4.5及以上。

添加包

MaterialDesignThemes 版本3.0.1
ShowMeTheXAML.MSBuild

修改App.Xaml

在Application.Resources内添加

<ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <materialDesign:BundledTheme BaseTheme="Light" PrimaryColor="DeepPurple" SecondaryColor="Lime" />
                <ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" /> 
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

配置窗口

Window属性中添加

xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
        TextElement.Foreground="{DynamicResource MaterialDesignBody}"
        Background="{DynamicResource MaterialDesignPaper}"
        TextElement.FontWeight="Medium"
        TextElement.FontSize="14"
        FontFamily="{materialDesign:MaterialDesignFont}"
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在窗体中添加一个Button

···

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

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

闽ICP备14008679号