Shell.xaml 966 B

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