HomeContent.xaml 1.2 KB

123456789101112131415161718192021222324
  1. <UserControl x:Class="PDF_Office.Views.HomeContent"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:prism ="http://prismlibrary.com/"
  7. xmlns:viewmodels="clr-namespace:PDF_Office.ViewModels"
  8. prism:ViewModelLocator.AutoWireViewModel="True"
  9. mc:Ignorable="d"
  10. d:DesignHeight="450" d:DesignWidth="800">
  11. <Grid>
  12. <Grid.ColumnDefinitions>
  13. <ColumnDefinition Width="270"/>
  14. <ColumnDefinition Width="*"/>
  15. </Grid.ColumnDefinitions>
  16. <!--左侧菜单栏-->
  17. <StackPanel>
  18. <Button Name="BtnOpenPDF" Content="OPEN PDF" Margin="41 54 41 0" Height="48" Command="{Binding OpenFileCommand}"/>
  19. <Button Name="BtnCreatPDF" Content="" Margin="41 8 41 0" Height="48"/>
  20. </StackPanel>
  21. <!--右侧内容区域-->
  22. <ContentControl Grid.Column="1" prism:RegionManager.RegionName="ToolContent"/>
  23. </Grid>
  24. </UserControl>