Xaml中的写法:
<Button>
<RelativePanel>
<TextBlock x:Name="IconButton" FontFamily="Segoe MDL2 Assets" Text="" Margin="0,3,0,0" VerticalAlignment="Center"/>
<TextBlock Text="Home" RelativePanel.RightOf="IconButton" VerticalAlignment="Center"/>
</RelativePanel>
</Button>
C#中的写法
TextBlock textBlock = new TextBlock();
textBlock.FontFamily = new FontFamily("Segoe MDL2 Assets");
textBlock.Text = ((char)0xE707).ToString();
mCanvas.Children.Add(textBlock);
Segoe MDL2 Assets图标样例可以看这里
http://modernicons.io/segoe-mdl2/cheatsheet/