Shell.xaml 887 B

12345678910111213141516171819
  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. <ContentControl Name="robot" prism:RegionManager.RegionName="RobotRegion" />
  7. <!--<TabControl>
  8. <TabItem Height="25" Width="80" Header="机器人">
  9. <ContentControl Name="robot" prism:RegionManager.RegionName="RobotRegion" />
  10. </TabItem>
  11. <TabItem Height="25" Width="80" Header="行为树">
  12. <ContentControl Name="treeCanvas" prism:RegionManager.RegionName="TreeCanvasRegion" />
  13. </TabItem>
  14. <TabItem Height="25" Width="80" Header="外挂">
  15. <ContentControl Name="waigua" prism:RegionManager.RegionName="WaiGuaRegion" />
  16. </TabItem>
  17. </TabControl>-->
  18. </Grid>
  19. </Window>