MainContent.xaml 957 B

1234567891011121314151617181920
  1. <UserControl
  2. x:Class="PDF_Office.Views.MainContent"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
  7. xmlns:local="clr-namespace:PDF_Office.Views"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. xmlns:prism="http://prismlibrary.com/"
  10. d:DesignHeight="450"
  11. d:DesignWidth="800"
  12. prism:ViewModelLocator.AutoWireViewModel="True"
  13. mc:Ignorable="d">
  14. <!--<i:Interaction.Triggers>
  15. <i:EventTrigger EventName="Loaded">
  16. <prism:InvokeCommandAction Command="{Binding Loaded}" CommandParameter="{Binding}" />
  17. </i:EventTrigger>
  18. </i:Interaction.Triggers>-->
  19. <ContentControl Name="ContentMain" prism:RegionManager.RegionName="{Binding MainContentRegionName}" />
  20. </UserControl>