summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/pjsua/winrt/cli/wp8/MainPage.xaml
diff options
context:
space:
mode:
Diffstat (limited to 'pjsip-apps/src/pjsua/winrt/cli/wp8/MainPage.xaml')
-rw-r--r--pjsip-apps/src/pjsua/winrt/cli/wp8/MainPage.xaml26
1 files changed, 26 insertions, 0 deletions
diff --git a/pjsip-apps/src/pjsua/winrt/cli/wp8/MainPage.xaml b/pjsip-apps/src/pjsua/winrt/cli/wp8/MainPage.xaml
new file mode 100644
index 00000000..4c89f130
--- /dev/null
+++ b/pjsip-apps/src/pjsua/winrt/cli/wp8/MainPage.xaml
@@ -0,0 +1,26 @@
+<phone:PhoneApplicationPage
+ x:Class="PjsuaCLI.UI.MainPage"
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+ xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
+ xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
+ xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
+ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+ mc:Ignorable="d"
+ FontFamily="{StaticResource PhoneFontFamilyNormal}"
+ FontSize="{StaticResource PhoneFontSizeNormal}"
+ Foreground="{StaticResource PhoneForegroundBrush}"
+ SupportedOrientations="Portrait" Orientation="Portrait"
+ shell:SystemTray.IsVisible="True">
+
+ <!--LayoutRoot is the root grid where all page content is placed-->
+ <Grid x:Name="LayoutRoot" Background="Black">
+ <Grid.RowDefinitions>
+ <RowDefinition Height="Auto"/>
+ <RowDefinition Height="*"/>
+ </Grid.RowDefinitions>
+ <Image x:Name="imgMain" HorizontalAlignment="Center" Margin="0" Grid.RowSpan="2" VerticalAlignment="Center" Source="/Assets/teluu-logo.png" Height="239"/>
+ <TextBlock x:Name="txtStatus" HorizontalAlignment="Center" Margin="0" Grid.RowSpan="2" TextWrapping="Wrap" VerticalAlignment="Bottom" Foreground="White"/>
+ </Grid>
+
+</phone:PhoneApplicationPage> \ No newline at end of file