123456789101112131415161718192021222324252627282930313233 |
- <UserControl x:Class="PDF_Master.CustomControl.PageControl"
- 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_Master.CustomControl"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid>
- <Border Height="64" Width="293" HorizontalAlignment="Center" VerticalAlignment="Bottom" Panel.ZIndex="1" Margin="9" Background="#323232" CornerRadius="4">
- <Grid>
- <StackPanel Orientation="Horizontal" VerticalAlignment="Center">
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="-" FontSize="20" Foreground="White" Margin="20,0,20,0"></TextBlock>
- <TextBlock Text="+" FontSize="20" Foreground="White" Margin="0,0,39,0"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="1" FontSize="20" Foreground="White" Margin="0,0,24,0"></TextBlock>
- <TextBlock Text="/" FontSize="20" Foreground="White" Margin="0,0,24,0"></TextBlock>
- <TextBlock Text="20" FontSize="20" Foreground="White" Margin="0,0,24,0"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="↑" FontSize="20" Foreground="White" Margin="20,0,20,0"></TextBlock>
- <TextBlock Text="↓" FontSize="20" Foreground="White"></TextBlock>
- </StackPanel>
- </StackPanel>
- </Grid>
- </Border>
- </Grid>
- </UserControl>
|