12345678910111213141516171819202122232425262728293031323334 |
- <UserControl
- x:Class="PDF_Master.Views.HomePanel.HomeGuidContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Master.Views.HomePanel"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:pDFTools="clr-namespace:PDF_Master.Views.HomePanel.PDFTools"
- xmlns:prism="http://prismlibrary.com/"
- xmlns:recentFiles="clr-namespace:PDF_Master.Views.HomePanel.RecentFiles"
- d:DesignHeight="450"
- d:DesignWidth="800"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Background="{StaticResource color.sys.layout.anti}"
- mc:Ignorable="d">
- <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:RecentFilesContent
- x:Name="Recentlist"
- Grid.Row="1"
- Margin="0,0,32,0" />
- </Grid>
- </ScrollViewer>
- </Grid>
- </UserControl>
|