PageRenderTime 42ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/V4/Quickstarts/Hello World/HelloWorld.Desktop/HelloWorldModule/Views/HelloWorldView.xaml

#
XAML | 7 lines | 7 code | 0 blank | 0 comment | 0 complexity | 931da3b53cf20ec9c2d91083a8a042a0 MD5 | raw file
  1. <UserControl x:Class="HelloWorldModule.Views.HelloWorldView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4. <Grid>
  5. <TextBlock Text="Hello World" Foreground="Green" HorizontalAlignment="Center" VerticalAlignment="Center" FontFamily="Calibri" FontSize="24" FontWeight="Bold"></TextBlock>
  6. </Grid>
  7. </UserControl>