How to know available icon names in nuget mahapps metro icon package?

c#, mahapps.metro, nuget, wpf, xaml

Solution

You can see all the icons in file `Icons.xaml` under folder `Resources` in your project.

Problem

I am using mahapp metro icon package in nuget to make a wpf application in C#. I am making a button icon as follows. I am using `appbar_arrow_right` icon. How can I know all the available icon names which I can use ? `VisualBrush Stretch="Fill" Visual="{StaticResource appbar_arrow_right}"`

Original source