Files
linphone-tutorials/cs/00_hello_world/MainPage.xaml
Anthony Gauchy 6d2e068f91 Hello world tutorial for LinphoneSDK x UWP
First step of a tutorial of how to use LinphoneSDK with Universal
Windows Platform
2020-12-10 17:20:19 +01:00

15 lines
597 B
XML

<Page
x:Class="_00_hello_world.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:_00_hello_world"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
<TextBlock Text="{x:Bind HelloText}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Grid>
</Page>