Shell.xaml 576 B

123456789
  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. <ContentControl Name="robot" prism:RegionManager.RegionName="RobotRegion" HorizontalAlignment="Left" VerticalAlignment="Top" />
  8. </Grid>
  9. </Window>