linphone-tutorials/uwp/cs/00_HelloWorld/MainPage.xaml
2021-09-13 15:50:58 +02:00

10 lines
369 B
XML

<Page
x:Class="_00_HelloWorld.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
<TextBlock Text="{x:Bind HelloText}" HorizontalAlignment="Center" VerticalAlignment="Center" />
</Grid>
</Page>