TestItemView.xaml 322 B

12345678
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
  3. x:Class="BindingDemo.TestItemView">
  4. <StackPanel>
  5. <TextBlock Classes="h1" Text="{Binding StringValue}"/>
  6. <TextBox Text="{Binding Detail}" AcceptsReturn="True"/>
  7. </StackPanel>
  8. </UserControl>