1234567891011121314151617181920212223242526272829 |
- <UserControl x:Class="PDF_Office.Views.HomePanel.HomeGuidContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Office.Views.HomePanel"
- xmlns:recentFiles="clr-namespace:PDF_Office.Views.HomePanel.RecentFiles"
- xmlns:pDFTools="clr-namespace:PDF_Office.Views.HomePanel.PDFTools"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Background="#F8F9FB"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid>
- <ScrollViewer
- x:Name="scrollView"
- VerticalAlignment="Stretch"
- VerticalScrollBarVisibility="Disabled">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition />
- </Grid.RowDefinitions>
- <pDFTools:QuickToolsContent x:Name="hometool" Margin="32,32,0,0"/>
- <recentFiles:RecentFilesView x:Name="Recentlist" Grid.Row="1" Margin="0,0,32,0" />
- </Grid>
- </ScrollViewer>
- </Grid>
- </UserControl>
|