How can I add a AppBarButton icon to a normal button in Windows Phone 8.1?

win-universal-app, windows-phone-8.1, xaml

Solution

The app bar icons are just characters from Segoe UI Symbol font. Just create a text block with that font and select the icon you need (you can use app called Character Map that comes with Windows)

Problem

How can I add a AppBarButton icon to a normal button in Windows Phone 8.1? At the bottom of this page you can see the AppBarButton icons in use. How can I do the same or similar as that with a normal button? ``` <Button> <ICON HERE SOMEHOW /> <TextBlock Content="Click Me!" /> </Button> ```

Original source