Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Phone (8) default appbar icons

In the example appbar on my Windows Phone application I can see this line of code added a button:

ApplicationBarIconButton appBarButton = new ApplicationBarIconButton(new Uri("/Assets/AppBar/appbar.add.rest.png", UriKind.Relative));

What I find interesting is that the icon is sourced from "/Assets/AppBar/". Are there any of the other standard Windows Phone appbar icons in there and if so is there a list or reference somewhere for me to use?

like image 484
Gerharddc Avatar asked Jul 18 '13 03:07

Gerharddc


3 Answers

If you have installed visual studio then you can get these files from here

C:\Program Files (x86)\Microsoft SDKs\Windows Phone\v8.0\Icons

like image 73
Inder Kumar Rathore Avatar answered Nov 06 '22 15:11

Inder Kumar Rathore


If you open the ApplicationBar Buttons collection editor, you can access to the list of the available icons. When you select one, it will be automatically added to the project:

enter image description here

like image 26
anderZubi Avatar answered Nov 06 '22 16:11

anderZubi


Other icons which are not included in the Windows Phone SDK can be found on Modern UI Icons.

like image 3
LorenzCK Avatar answered Nov 06 '22 17:11

LorenzCK