FirstView.xaml 680 B

1234567891011121314
  1. <views:MvxWindowsPage
  2. x:Class="Xamarin_Insights.WindowsPhone.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. <Button Content="Go to Second" Command="{Binding GotoSecondViewCommand}" />
  12. </StackPanel>
  13. </Grid>
  14. </views:MvxWindowsPage>