123456789101112131415161718192021222324252627282930313233343536373839 |
- <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"
- PanningMode="VerticalFirst"
- PreviewMouseWheel="ScrollViewer_PreviewMouseWheel"
- VerticalScrollBarVisibility="Visible">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition />
- </Grid.RowDefinitions>
- <!--快捷工具
- <pDFTools:QuickToolsContent x:Name="hometool" Margin="32" />-->
- <ContentControl Margin="24" prism:RegionManager.RegionName="{Binding HomeToolRegionName}" />
- <recentFiles:RecentFilesContent
- x:Name="Recentlist"
- Grid.Row="1"
- Margin="24,0"
- MouseDown="Recentlist_MouseDown" />
- </Grid>
- </ScrollViewer>
- </Grid>
- </UserControl>
|