MainWindow.xaml 859 B

12345678910111213141516171819202122232425262728
  1. <Window x:Class="Egametang.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:e="clr-namespace:Egametang"
  5. Title="MainWindow" Height="800" Width="1280">
  6. <Grid>
  7. <Grid.RowDefinitions>
  8. <RowDefinition Height="Auto" />
  9. <RowDefinition Height="*"/>
  10. </Grid.RowDefinitions>
  11. <Grid Grid.Row="0">
  12. <Menu>
  13. <MenuItem Height="24">
  14. </MenuItem>
  15. </Menu>
  16. </Grid>
  17. <Grid Grid.Row="1">
  18. <Grid.ColumnDefinitions>
  19. <ColumnDefinition Width="150" />
  20. <ColumnDefinition Width="Auto" />
  21. <ColumnDefinition Width="*" />
  22. </Grid.ColumnDefinitions>
  23. <e:BehaviorTreeView />
  24. <GridSplitter Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Stretch" Width="5" />
  25. <Canvas />
  26. </Grid>
  27. </Grid>
  28. </Window>