HomeGuidContent.xaml 1.2 KB

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