Using Vectors in an App Bar (Windows 8 + Windows Phone 8.1)

I’m going to do this backwards. I’ll start assuming you already have your vector icon in XAML. Then, how to import your vector icon from Illustrator to XAML. The basics: Your button should look like this: <AppBarButton x:Name=”MyButton”     Label=”do stuff”     Style=”{StaticResource HeadphoneVectorIcons}”/> And the style should look like this: <Style x:Key=”HeadphoneVectorIcons”         TargetType=”ButtonBase”>…

Read More