| 12345678910111213141516171819202122232425262728 |
- <Window x:Class="Egametang.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:e="clr-namespace:Egametang"
- Title="MainWindow" Height="800" Width="1280">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0">
- <Menu>
- <MenuItem Height="24">
- </MenuItem>
- </Menu>
- </Grid>
- <Grid Grid.Row="1">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="150" />
- <ColumnDefinition Width="Auto" />
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <e:BehaviorTreeView />
- <GridSplitter Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Stretch" Width="5" />
- <Canvas />
- </Grid>
- </Grid>
- </Window>
|