Shell.xaml 670 B

123456789101112131415
  1. <Window x:Class="Editor.Shell" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:prism="http://www.codeplex.com/prism" Title="Editor" Height="800" Width="1280"
  4. WindowStartupLocation="CenterScreen">
  5. <Grid>
  6. <TabControl>
  7. <TabItem Height="25" Width="80" Header="行为树">
  8. <ContentControl Name="treeCanvas" prism:RegionManager.RegionName="TreeCanvasRegion" />
  9. </TabItem>
  10. <TabItem Height="25" Width="80" Header="机器人">
  11. <ContentControl Name="robot" prism:RegionManager.RegionName="RobotRegion" />
  12. </TabItem>
  13. </TabControl>
  14. </Grid>
  15. </Window>