ioview.xaml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <UserControl x:Class="athosSimulator.IO.ioview"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:athosSimulator.IO"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="*"></ColumnDefinition>
  12. <ColumnDefinition Width="*"></ColumnDefinition>
  13. <ColumnDefinition Width="*"></ColumnDefinition>
  14. <ColumnDefinition Width="*"></ColumnDefinition>
  15. </Grid.ColumnDefinitions>
  16. <StackPanel Grid.Column="0" Orientation="Vertical">
  17. <TextBlock>DI</TextBlock>
  18. <ListView></ListView>
  19. </StackPanel>
  20. <StackPanel Grid.Column="1" Orientation="Vertical">
  21. <TextBlock>DO</TextBlock>
  22. <ListView></ListView>
  23. </StackPanel>
  24. <StackPanel Grid.Column="2" Orientation="Vertical">
  25. <TextBlock>AI</TextBlock>
  26. <ListView></ListView>
  27. </StackPanel>
  28. <StackPanel Grid.Column="3" Orientation="Vertical">
  29. <TextBlock>AO</TextBlock>
  30. <ListView></ListView>
  31. </StackPanel>
  32. </Grid>
  33. </UserControl>