Daniel Santos
Daniel Santos

Reputation: 15778

Where find default Windows 10 UWP icons

I'm developing a UWP application, however I'm not able to find where are the default icons.

Where can I find a list of them?

Upvotes: 1

Views: 2278

Answers (1)

Kiran Paul
Kiran Paul

Reputation: 875

you can use character map application and select the font as segoe mdl2 assets. All the available icons will be shown. Alternatively in xaml also you can use like below code:

<SymbolIcon Symbol="Sync" Foreground="Red"/>

Upvotes: 4

Related Questions