Shell.xaml 971 B

123456789101112131415161718192021
  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" HorizontalAlignment="Center" VerticalAlignment="Center" />-->
  7. <TabControl>
  8. <TabItem Height="25" Width="80" Header="行为树">
  9. <ContentControl Name="behaviorTree" prism:RegionManager.RegionName="BehaviorTreeRegion" />
  10. </TabItem>
  11. <!--
  12. <TabItem Height="25" Width="80" Header="机器人">
  13. <ContentControl Name="robot" prism:RegionManager.RegionName="RobotRegion" />
  14. </TabItem>
  15. <TabItem Height="25" Width="80" Header="WCFClient">
  16. <ContentControl Name="wcfClient" prism:RegionManager.RegionName="WCFClientRegion" />
  17. </TabItem>
  18. -->
  19. </TabControl>
  20. </Grid>
  21. </Window>