/V2.2/trunk/Quickstarts/Modularity/RemoteModularityQuickstart/ModuleWY.Silverlight/ModuleY/DefaultViewY.xaml

# · XAML · 12 lines · 12 code · 0 blank · 0 comment · 0 complexity · 94d692ef9e0a4443100ddcf9c0c1e48b MD5 · raw file

  1. <UserControl x:Class="ModuleY.DefaultViewY"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" >
  4. <Grid x:Name="LayoutRoot" Background="White">
  5. <Border Margin="10,10,10,10" CornerRadius="4,4,4,4" BorderBrush="#193441" Background="#FFFFFF" BorderThickness="2,2,2,2" VerticalAlignment="Center" HorizontalAlignment="Center" Height="60">
  6. <StackPanel>
  7. <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">Module Y Loaded</TextBlock>
  8. <Button Padding="5" VerticalAlignment="Center" Width="95" Click="LoadModule_ButtonClick" Content="Load Module X"></Button>
  9. </StackPanel>
  10. </Border>
  11. </Grid>
  12. </UserControl>