HomeGuidContent.xaml 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <UserControl x:Class="PDF_Office.Views.HomePanel.HomeGuidContent"
  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:local="clr-namespace:PDF_Office.Views.HomePanel"
  7. xmlns:recentFiles="clr-namespace:PDF_Office.Views.HomePanel.RecentFiles"
  8. xmlns:pDFTools="clr-namespace:PDF_Office.Views.HomePanel.PDFTools"
  9. xmlns:prism="http://prismlibrary.com/"
  10. prism:ViewModelLocator.AutoWireViewModel="True"
  11. Background="#F8F9FB"
  12. mc:Ignorable="d"
  13. d:DesignHeight="450" d:DesignWidth="800">
  14. <Grid>
  15. <ScrollViewer
  16. x:Name="scrollView"
  17. VerticalAlignment="Stretch"
  18. VerticalScrollBarVisibility="Disabled">
  19. <Grid>
  20. <Grid.RowDefinitions>
  21. <RowDefinition Height="Auto" />
  22. <RowDefinition />
  23. </Grid.RowDefinitions>
  24. <pDFTools:QuickToolsContent x:Name="hometool" Margin="32,32,0,0"/>
  25. <recentFiles:RecentFilesView x:Name="Recentlist" Grid.Row="1" Margin="0,0,32,0" />
  26. </Grid>
  27. </ScrollViewer>
  28. </Grid>
  29. </UserControl>