HomeGuidContent.xaml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. <UserControl
  2. x:Class="PDF_Master.Views.HomePanel.HomeGuidContent"
  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:local="clr-namespace:PDF_Master.Views.HomePanel"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:pDFTools="clr-namespace:PDF_Master.Views.HomePanel.PDFTools"
  9. xmlns:prism="http://prismlibrary.com/"
  10. xmlns:recentFiles="clr-namespace:PDF_Master.Views.HomePanel.RecentFiles"
  11. d:DesignHeight="450"
  12. d:DesignWidth="800"
  13. prism:ViewModelLocator.AutoWireViewModel="True"
  14. Background="{StaticResource color.sys.layout.anti}"
  15. mc:Ignorable="d">
  16. <Grid>
  17. <ScrollViewer
  18. x:Name="scrollView"
  19. VerticalAlignment="Stretch"
  20. VerticalScrollBarVisibility="Disabled">
  21. <Grid>
  22. <Grid.RowDefinitions>
  23. <RowDefinition Height="Auto" />
  24. <RowDefinition />
  25. </Grid.RowDefinitions>
  26. <pDFTools:QuickToolsContent x:Name="hometool" Margin="32,32,0,0" />
  27. <recentFiles:RecentFilesContent
  28. x:Name="Recentlist"
  29. Grid.Row="1"
  30. Margin="0,0,32,0" />
  31. </Grid>
  32. </ScrollViewer>
  33. </Grid>
  34. </UserControl>