FirstView.xaml.pp 688 B

12345678910111213141516
  1. <views:MvxWindowsPage
  2. x:Class="$rootnamespace$.Views.FirstView"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. xmlns:views="using:Cirrious.MvvmCross.WindowsCommon.Views"
  8. mc:Ignorable="d">
  9. <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
  10. <StackPanel>
  11. <TextBox Text="{Binding Hello, Mode=TwoWay}" />
  12. <TextBlock Text="{Binding Hello}" />
  13. </StackPanel>
  14. </Grid>
  15. </views:MvxWindowsPage>