spiegelp / MaterialDesignExtensions

Material Design Extensions is based on Material Design in XAML Toolkit to provide additional controls and features for WPF apps
https://spiegelp.github.io/MaterialDesignExtensions/
MIT License
762 stars 122 forks source link

AppBar AppIcon #88

Closed NormskiJJO closed 4 years ago

NormskiJJO commented 4 years ago

Can the AppBar AppIcon support material design pack icons?

spiegelp commented 4 years ago

@NormskiJJO The AppBar.AppIcon property is of type object. So it can be whatever you like.

NormskiJJO commented 4 years ago

How would you set it? i.e.

spiegelp commented 4 years ago
<mde:AppBar Title="My app">
    <mde:AppBar.AppIcon>
        <md:PackIcon Kind="Volleyball" Width="24" Height="24" />
    </mde:AppBar.AppIcon>
</mde:AppBar>
NormskiJJO commented 4 years ago

Thanks!