<UserControl
    x:Class="PDF_Office.Views.HomeContent"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:cus="clr-namespace:PDF_Office.CustomControl"
    xmlns:customControl="clr-namespace:PDF_Office.CustomControl"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:homePanel="clr-namespace:PDF_Office.Views.HomePanel"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:prism="http://prismlibrary.com/"
    xmlns:viewmodels="clr-namespace:PDF_Office.ViewModels"
    d:DataContext="{d:DesignInstance Type=viewmodels:HomeContentViewModel}"
    d:DesignHeight="450"
    d:DesignWidth="800"
    prism:ViewModelLocator.AutoWireViewModel="True"
    mc:Ignorable="d">
    <UserControl.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="../Styles/CustomBtnStyle.xaml" />
            </ResourceDictionary.MergedDictionaries>
            <DataTemplate x:Key="PromotionDataTemplate">
                <StackPanel
                    Margin="0,10,0,10"
                    Background="White"
                    Cursor="Hand"
                    Orientation="Horizontal">
                    <Image
                        Width="16"
                        Height="16"
                        Margin="0,0,10,0"
                        Source="{Binding ImagePath}" />
                    <TextBlock
                        FontSize="14"
                        Foreground="#6B6F7D"
                        Text="{Binding Content}" />
                </StackPanel>
            </DataTemplate>
        </ResourceDictionary>
    </UserControl.Resources>
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto" />
            <RowDefinition />
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="270" />
            <ColumnDefinition Width="*" />
        </Grid.ColumnDefinitions>
        <!--  左侧菜单栏  -->
        <StackPanel>
            <Button
                x:Name="BtnOpenPDF"
                Height="48"
                Margin="41,54,41,0"
                Background="#19233B"
                BorderThickness="1"
                Command="{Binding OpenFileCommand}"
                Foreground="#FFFFFF"
                Style="{StaticResource BlueBtnStyle}">
                <StackPanel Orientation="Horizontal">
                    <TextBlock
                        x:Name="TxbOpenPDF"
                        VerticalAlignment="Center"
                        FontFamily="Segoe UI"
                        FontSize="16"
                        Text="Open File" />
                </StackPanel>
            </Button>

            <Border
                Margin="41,8,41,0"
                BorderBrush="#000000"
                BorderThickness="1"
                CornerRadius="4">
                <Grid Width="188" Height="48">
                    <Menu HorizontalAlignment="Right">
                        <MenuItem
                            Width="168"
                            Height="48"
                            Padding="138,0,0,0"
                            HorizontalContentAlignment="Right">
                            <MenuItem.Header>
                                <Path
                                    Width="32"
                                    HorizontalAlignment="Right"
                                    VerticalAlignment="Center"
                                    Data="M12.0001 6.00012L8 10.0002L3.99988 6.00012"
                                    Stroke="#6B869C" />
                            </MenuItem.Header>
                            <MenuItem
                                Width="158"
                                Command="{Binding CreateBlackPDFCommand}"
                                Header="新建空白PDF" />
                            <MenuItem Header="从网页创建PDF" />
                            <MenuItem Header="从扫描仪导入" />
                        </MenuItem>
                    </Menu>
                    <Button
                        Width="156"
                        HorizontalAlignment="Left"
                        Background="White"
                        BorderThickness="0">
                        <StackPanel Orientation="Horizontal">
                            <Image
                                Width="30"
                                Height="30"
                                Margin="18,0,12,0"
                                Source="../Resources/HomeIcon/file_addition.png" />
                            <TextBlock
                                x:Name="TxbCreatePDF"
                                VerticalAlignment="Center"
                                FontFamily="Segoe UI"
                                FontSize="16"
                                Foreground="{StaticResource Common.ForGround.Blue}"
                                Text="Creat PDF" />
                        </StackPanel>
                    </Button>
                </Grid>
            </Border>

            <customControl:CustomIconToggleBtn
                x:Name="BtnGuid"
                Width="216"
                Height="40"
                Margin="0,24,0,0"
                HorizontalContentAlignment="Left"
                Click="ToggleBtnSelect_Click"
                Command="{Binding ShowToolCommand}"
                CommandParameter="Guid"
                Style="{StaticResource ToggleBtnSelectStyle}"
                Tag="GridMode">
                <StackPanel Margin="8,0,8,0" Orientation="Horizontal">
                    <Path Data="M3.8655 5.79653C3.32363 6.16977 3 6.78565 3 7.44363V15C3 16.1046 3.89543 17 5 17H9V13.1785C9 12.6262 9.44772 12.1785 10 12.1785C10.5523 12.1785 11 12.6262 11 13.1785V17H15C16.1046 17 17 16.1046 17 15V7.44363C17 6.78565 16.6764 6.16977 16.1345 5.79653L11.1345 2.3526C10.4514 1.88206 9.54865 1.88206 8.8655 2.3526L3.8655 5.79653Z" Fill="{Binding ElementName=BtnGuid, Path=Foreground}" />
                    <TextBlock
                        x:Name="TxbHome"
                        Margin="8,0,0,0"
                        VerticalAlignment="Center"
                        FontFamily="SF Pro Text"
                        FontSize="14"
                        Text="Home" />
                </StackPanel>
            </customControl:CustomIconToggleBtn>

            <customControl:CustomIconToggleBtn
                x:Name="BtnTool"
                Width="216"
                Height="40"
                HorizontalContentAlignment="Left"
                Click="ToggleBtnSelect_Click"
                Command="{Binding ShowToolCommand}"
                CommandParameter="Tools"
                Style="{StaticResource ToggleBtnSelectStyle}"
                Tag="GridMode">
                <StackPanel Margin="8,0,8,0" Orientation="Horizontal">
                    <Path Data="M3.8655 5.79653C3.32363 6.16977 3 6.78565 3 7.44363V15C3 16.1046 3.89543 17 5 17H9V13.1785C9 12.6262 9.44772 12.1785 10 12.1785C10.5523 12.1785 11 12.6262 11 13.1785V17H15C16.1046 17 17 16.1046 17 15V7.44363C17 6.78565 16.6764 6.16977 16.1345 5.79653L11.1345 2.3526C10.4514 1.88206 9.54865 1.88206 8.8655 2.3526L3.8655 5.79653Z" Fill="{Binding ElementName=BtnTool, Path=Foreground}" />
                    <TextBlock
                        x:Name="TxbTool"
                        Margin="8,0,0,0"
                        VerticalAlignment="Center"
                        FontFamily="SF Pro Text"
                        FontSize="14"
                        Text="Tool" />
                </StackPanel>
            </customControl:CustomIconToggleBtn>

            <customControl:CustomIconToggleBtn
                x:Name="BtnCloud"
                Width="216"
                Height="40"
                HorizontalContentAlignment="Left"
                Click="ToggleBtnSelect_Click"
                Command="{Binding ShowToolCommand}"
                CommandParameter="Cloud"
                Style="{StaticResource ToggleBtnSelectStyle}"
                Tag="GridMode">
                <StackPanel Margin="8,0,8,0" Orientation="Horizontal">
                    <Path Data="M14.95 16.5H5.5C3.01472 16.5 1 14.4853 1 12C1 9.51472 3.01472 7.5 5.5 7.5L5.52018 7.50004C5.74751 4.9771 7.86787 3 10.45 3C13.1838 3 15.4 5.21619 15.4 7.95C15.4 8.10931 15.3925 8.26686 15.3778 8.42232C17.4134 8.63601 19 10.3577 19 12.45C19 14.6701 17.2137 16.4729 15 16.4997V16.5H14.95Z" Fill="{Binding ElementName=BtnCloud, Path=Foreground}" />
                    <TextBlock
                        x:Name="TxbCloud"
                        Margin="8,0,0,0"
                        VerticalAlignment="Center"
                        FontFamily="SF Pro Text"
                        FontSize="14"
                        Text="Cloud" />
                </StackPanel>
            </customControl:CustomIconToggleBtn>

        </StackPanel>
        <homePanel:PromotionContent Grid.Row="1" />
        <!--  右侧内容区域  -->
        <ContentControl
            Grid.RowSpan="2"
            Grid.Column="1"
            prism:RegionManager.RegionName="{Binding ToolRegionName}" />
        <cus:LoadingControl
            Grid.RowSpan="2"
            Grid.ColumnSpan="2"
            Visibility="{Binding IsLoading}" />
    </Grid>
</UserControl>