当前位置:   article > 正文

WPF 使用MaterialDesign(开源UI控件库)_wpf materialdesign

wpf materialdesign

        MaterialDesign for WPF是针对WPF设计的开源UI框架,使用该UI框架可以很方便使用各种封装好的绚丽的控件,方便快速设计UI界面。

官网链接:http://materialdesigninxaml.net/

MaterialDesign Github源码链接:https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit

本篇实例链接:https://download.csdn.net/download/lvxingzhe3/87879208

一、在使用MaterialDesign前需在Nuget包管理器中添加MaterialDesignThemes包,并在启动文件中添加MaterialDesign的引用(本例是在.NET6环境,Prism框架基础上引用的MaterialDesign)。

  1. <prism:PrismApplication x:Class="WpfPrismApp.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:WpfPrismApp"
  5. xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
  6. xmlns:prism="http://prismlibrary.com/">
  7. <Application.Resources>
  8. <ResourceDictionary>
  9. <ResourceDictionary.MergedDictionaries>
  10. <materialDesign:BundledTheme BaseTheme="Light" PrimaryColor="Orange" SecondaryColor="Lime" />
  11. <ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
  12. </ResourceDictionary.MergedDictionaries>
  13. </ResourceDictionary>
  14. </Application.Resources>
  15. </prism:PrismApplication>

Note:PrimaryColor为主题色,改变PrimaryColor属性即可改变MaterialDesign控件主题颜色。

二、在界面中添加MaterialDesign的引用,即可在界面中使用MaterialDesign的控件。MaterialDesign的控件的使用代码在官方给的MaterialDesign Github源码中,运行Demo程序可以直接查看控件使用代码,选择自己想要的控件代码复制到自己的程序中,即可使用丰富多彩的MaterialDesign开源控件丰富自己的界面。

 

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

闽ICP备14008679号