MainWindow.xaml 406 B

123456789101112
  1. <Window xmlns="https://github.com/avaloniaui" Width="600" Height="500"
  2. Title="Previewer">
  3. <Grid RowDefinitions="0.5*,200">
  4. <ScrollViewer Name="Remote"/>
  5. <ScrollViewer Name="ErrorsContainer" Background="#ffe0e0">
  6. <TextBlock Name="Errors"/>
  7. </ScrollViewer>
  8. <TextBox Grid.Row="1" AcceptsReturn="True" Name="Xaml"/>
  9. </Grid>
  10. </Window>