AppBarButton for WPF
This is a simple implementation of the AppBarButton for WPF.
<Window x:Class="AppBarButton.WPF.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:AppBarButton.WPF"
xmlns:appbarbtn="https://github.com/ChrisPulman/AppBarButton.WPF"
Title="MainWindow" Height="350" Width="525">
<Grid>
<appbarbtn:AppBarButton Content="adobe_acrobat" Icon="adobe_acrobat" />
</Grid>
</Window>
The Icon is a enum that is used to find the icon in the Assets\AppBar
folder. The icon is a 48x48 Canvas file. These start with ab_.
The icons begining with md_ are from the Material Design Icons. https://pictogrammers.com/library/mdi/
You can add your own icons by setting the IconData property with a suitable path of your choice.
The theme is a ResourceDictionary that is merged into the main ResourceDictionary.
The default theme is /AppBarButton.WPF;component/Themes/Generic.xaml
.
There is also a Light theme is /AppBarButton.WPF;component/Themes/AppBarButton.Light.xaml
.
There is also a Dark theme is /AppBarButton.WPF;component/Themes/AppBarButton.Dark.xaml
.
You can create your own theme by creating a new ResourceDictionary and merging it into the main ResourceDictionary. Create based on the following:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/AppBarButton.WPF;component/Themes/AppBarButton.xaml" />
</ResourceDictionary.MergedDictionaries>
<!-- default accent colors and brushes -->
<Color x:Key="AccentColor">#1ba1e2</Color>
<SolidColorBrush x:Key="Accent" Color="{DynamicResource AccentColor}" />
<SolidColorBrush x:Key="AppBarButtonBorder" Color="#919191" />
<SolidColorBrush x:Key="AppBarButtonBorderHover" Color="#d1d1d1" />
<SolidColorBrush x:Key="AppBarButtonBorderPressed" Color="#d1d1d1" />
<SolidColorBrush x:Key="AppBarButtonBorderDisabled" Color="#515151" />
<SolidColorBrush x:Key="AppBarButtonIconBackgroundPressed" Color="{DynamicResource AccentColor}" />
<SolidColorBrush x:Key="AppBarButtonIconForegroundPressed" Color="#d1d1d1" />
<SolidColorBrush x:Key="AppBarButtonText" Color="#d1d1d1" />
<SolidColorBrush x:Key="AppBarButtonTextHover" Color="#d1d1d1" />
<SolidColorBrush x:Key="AppBarButtonTextPressed" Color="#d1d1d1" />
<SolidColorBrush x:Key="AppBarButtonTextDisabled" Color="#515151" />
</ResourceDictionary>