HomeGuidContent.xaml 1.3 KB

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