PageRenderTime 37ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/V2.2/trunk/Quickstarts/Modularity/DirectoryLookupModularity/DirectoryLookupModularity/Shell.xaml

#
XAML | 25 lines | 25 code | 0 blank | 0 comment | 0 complexity | a702f60b34ed5f8b67ecd697350b2a5f MD5 | raw file
  1. <Window x:Class="DirectoryLookupModularity.Shell"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:cal="http://www.codeplex.com/CompositeWPF"
  5. Title="Shell" Width="300" Height="425">
  6. <Window.Background>
  7. <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
  8. <GradientStop Color="#FFFFFFFF" Offset="0"/>
  9. <GradientStop Color="#FCFFF5" Offset="0.992"/>
  10. <GradientStop Color="#3E606F" Offset="0.185"/>
  11. </LinearGradientBrush>
  12. </Window.Background>
  13. <Grid>
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="50"/>
  16. <RowDefinition Height="*"/>
  17. </Grid.RowDefinitions>
  18. <Border Margin="10,5,10,10" Grid.Row="1" CornerRadius="4,4,4,4" BorderBrush="#193441" Background="#FFFFFF" BorderThickness="2,2,2,2">
  19. <ItemsControl cal:RegionManager.RegionName="MainRegion"/>
  20. </Border>
  21. <Label HorizontalAlignment="Left" Margin="135,5,0,0" Width="Auto" Content="QuickStart" FontWeight="Normal" Foreground="#FF373737" FontSize="24" FontFamily="Corbel"/>
  22. <Label HorizontalAlignment="Left" Margin="10,5,0,0" Width="Auto" Content="Modularity" FontWeight="Bold" Foreground="#FF373737" FontSize="24" FontFamily="Corbel"/>
  23. <Separator Margin="0,0,0,0" VerticalAlignment="Bottom" Height="10" BorderBrush="#193441"/>
  24. </Grid>
  25. </Window>