Reputation: 879
In UWP XAML you can use TextBlock
<TextBlock FontFamily="Segoe UI Symbol" FontSize="40"></TextBlock>
or
FontIcon/Glyph
<FontIcon FontFamily="Segoe UI Symbol" Glyph=""/>
How does one do it in XAMARIN.FORMS?
Upvotes: 0
Views: 2439
Reputation: 3808
you may also use the same style in UWP XAML.
for example,you can add a label in the portable project
<Label Text=""
FontFamily="Segoe MDL2 Assets"
VerticalOptions="Center"
HorizontalOptions="Center" />
In the uwp test ,the text icon is showing in the device.
Upvotes: 3