Reputation: 15778
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
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