Shell.xaml 855 B

123456789101112131415161718
  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. <TabItem Height="25" Width="80" Header="外挂">
  14. <ContentControl Name="waigua" prism:RegionManager.RegionName="WaiGuaRegion" />
  15. </TabItem>
  16. </TabControl>
  17. </Grid>
  18. </Window>