ViewA.xaml 836 B

1234567891011121314151617
  1. <UserControl x:Class="CustomModule.Views.ViewA"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:CustomModule.Views"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. mc:Ignorable="d"
  8. Background="Black"
  9. d:DesignHeight="300" d:DesignWidth="300"
  10. xmlns:prism="http://prismlibrary.com/"
  11. prism:ViewModelLocator.AutoWireViewModel="True" >
  12. <Grid>
  13. <TextBlock Text="{Binding Message}"
  14. HorizontalAlignment="Center"
  15. VerticalAlignment="Center" />
  16. </Grid>
  17. </UserControl>