Reputation: 797
Can't figure out what the Segoe MDL2 icon used for CompactOverlay (Picture in Picture) mode is. See example picture below. Anyone have any ideas?
Thanks!
Upvotes: 0
Views: 578
Reputation: 1
They use different font called "SegMVR2.ttf". I took it here:
C:\Program Files\WindowsApps\Microsoft.ZuneVideo_10.17092.13511.0_x64__8wekyb3d8bbwe\Resources\Fonts
Then, in XAML i used this markup:
<AppBarButton>
<AppBarButton.Icon>
<FontIcon FontFamily="ms-appx:/Resources/Fonts/SegMVR2.ttf#Segoe MVR MDL2 Assets" Glyph=""/>
</AppBarButton.Icon>
</AppBarButton>
Upvotes: 0
Reputation: 46
I don't think that symbol is in the font, but it can be synthesized by layering two symbols (E7FB and EB9F). Something similar to this:
<Grid>
<TextBlock HorizontalAlignment="Left"
VerticalAlignment="Top"
Margin="10"
FontFamily="Segoe MDL2 Assets"
FontSize="15"></TextBlock>
<TextBlock HorizontalAlignment="Left"
VerticalAlignment="Top"
Margin="16,12,0,0"
FontFamily="Segoe MDL2 Assets"
FontSize="6 "></TextBlock>
</Grid>
Upvotes: 3