FirstView.xaml.pp 818 B

12345678910111213141516
  1. <views:MvxWpfView
  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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:views="clr-namespace:Cirrious.MvvmCross.Wpf.Views;assembly=Cirrious.MvvmCross.Wpf"
  8. mc:Ignorable="d"
  9. d:DesignHeight="300" d:DesignWidth="300">
  10. <Grid>
  11. <StackPanel>
  12. <TextBox Text="{Binding Hello, Mode=TwoWay}" />
  13. <TextBox Text="{Binding Hello, Mode=TwoWay}" />
  14. </StackPanel>
  15. </Grid>
  16. </views:MvxWpfView>