MaterialDesign-WPF-Expander 0.9.0

dotnet add package MaterialDesign-WPF-Expander --version 0.9.0
NuGet\Install-Package MaterialDesign-WPF-Expander -Version 0.9.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MaterialDesign-WPF-Expander" Version="0.9.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MaterialDesign-WPF-Expander --version 0.9.0
#r "nuget: MaterialDesign-WPF-Expander, 0.9.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MaterialDesign-WPF-Expander as a Cake Addin
#addin nuget:?package=MaterialDesign-WPF-Expander&version=0.9.0

// Install MaterialDesign-WPF-Expander as a Cake Tool
#tool nuget:?package=MaterialDesign-WPF-Expander&version=0.9.0

MaterialDesign-WPF-Expander

Just expander designed with using material design.
This is my first custom WPF control library. These are preliminary
versions and the library was experimental before the 0.5.0 version.
Perhaps there are some problems, if you notice them please report them.

The idea of creating this Expander ui element came up with when I
visited https://domains.google/#/domains-features, there I saw
this element and I just had an idea to try to implement this element
in WPF. It turned out not bad, I think.
Install package (nuget): Install-Package aterialDesign-WPF-Expander
Here are some screenshots of the demo project:

alternate text is missing from this package README image alternate text is missing from this package README image

This element also supports basic customization, background color,
foreground color, hover foreground color, font styling and in
general you can simply override the files with themes.
Quick start:
App.xaml:
<Application>
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/MaterialDesign-WPF-Expander;component/Resources/Icons/Icons.xaml" />
                
                <ResourceDictionary Source="pack://application:,,,/MaterialDesign-WPF-Expander;component/Themes/DarkDictionary.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>
MainWindow.xaml:
<mdex:Expander
    Title="Lorem ipsum dolor sit amet"
    Background="{DynamicResource Ex-Background-Brush}"
    BorderBrush="{DynamicResource Ex-BorderFill-Brush}"
    Foreground="{DynamicResource Ex-HeaderForeground-Brush}"
    HoverForeground="{DynamicResource Ex-HeaderHoverForeground-Brush}"
    IsOpened="True">
        <TextBlock
            Padding="40,5,5,0"
            FontSize="14"
            Foreground="{DynamicResource Ex-HeaderForeground-Brush}"
            TextWrapping="WrapWithOverflow">
            Some text for expander
        </TextBlock>
</mdex:Expander>
Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.9.0 906 7/13/2019

Summary of changes made in this release of the package.