1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <UserControl x:Class="PDF_Master.Views.Dialog.ToolsDialogs.CompressDialogs.CompressProgressBarDialog"
- 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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- prism:Dialog.WindowStyle="{StaticResource DialogWindowStyle}"
- d:DesignHeight="58"
- d:DesignWidth="226"
- Height="58"
- Width="226"
- mc:Ignorable="d"
- >
- <Grid Height="58" Width="226">
- <Border
- Width="226"
- Height="58"
- Background="{StaticResource color.sys.layout.dark.bg}"
- BorderThickness="0"
- CornerRadius="{StaticResource border-radius.8}"
- Effect="{StaticResource shadow.neutral.m}">
- <Grid Margin="16,13" Background="Transparent">
- <StackPanel Orientation="Horizontal">
- <TextBlock Foreground="{StaticResource color.sys.text.anti.norm}" Text="Compress "></TextBlock>
- <TextBlock Text="("></TextBlock>
- <TextBlock Text="{Binding PageIndex}"></TextBlock>
- <TextBlock Text="/"></TextBlock>
- <TextBlock Text="{Binding PageNumber}"></TextBlock>
- <TextBlock Text=")"></TextBlock>
- </StackPanel>
- <Button
- Width="12"
- Height="12"
- HorizontalAlignment="Right"
- VerticalAlignment="Top"
- BorderThickness="0"
- Background="{StaticResource color.sys.layout.dark.bg}"
- Padding="0,0,1,1"
- Command="{Binding CloseCompressCommand}"
- >
- <Path Data="M6.00006 7.06066L9.46973 10.5303L10.5304 9.46967L7.06072 6L10.5304 2.53033L9.46973 1.46967L6.00006 4.93934L2.53039 1.46967L1.46973 2.53033L4.9394 6L1.46973 9.46967L2.53039 10.5303L6.00006 7.06066Z" Fill="#CED0D4"/>
- </Button>
- <ProgressBar Minimum="0" Maximum="{Binding PageNumber}" Value="{Binding PageIndex}" Height="4" Width="194"
- BorderThickness="0"
- Margin="0,0,0,4" VerticalAlignment="Bottom"
- Foreground="{StaticResource color.slider.track-filled.norm}"/>
- </Grid>
- </Border>
- </Grid>
- </UserControl>
|