1234567891011121314151617181920212223242526272829303132333435 |
- <Page x:Class="CCDCountWpf.WpfPage.HistoryDataPage"
- 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:CCDCountWpf.WpfPage"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="HistoryDataPage">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="60"/>
- </Grid.RowDefinitions>
- <Border Grid.Row="0" BorderBrush="Black" BorderThickness="1" Margin="2,2,2,2">
- <Image x:Name="ShowBox" Source="{Binding HistoryImage}" Margin="0,0,0,0"/>
- </Border>
- <Border Grid.Row="1" Margin="2,2,2,2" VerticalAlignment="Center" HorizontalAlignment="Center">
- <StackPanel Orientation="Horizontal">
- <Button x:Name="PreviousBtn" Content="上一张" Height="40" Width="100" Margin="0,0,30,0" Click="PreviousBtn_Click"/>
- <Label Content="第" FontSize="20" />
- <Label Content="{Binding HistoryImageNum}" FontSize="20" />
- <Label Content="张/共" FontSize="20" />
- <Label Content="{Binding HistoryImageCount}" FontSize="20" />
- <Label Content="张" FontSize="20" Margin="0,0,20,0" />
- <Label Content="跳转至" FontSize="20" />
- <TextBox x:Name="NowPageNumTbx" Text="{Binding HistoryImageNum}" Height="40" Width="50" FontSize="20" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" />
- <Label Content="张" FontSize="20" Margin="0,0,5,0" />
- <Button x:Name="SkipBtn" Content="跳转" Height="30" Width="50" Margin="0,0,0,0" Click="SkipBtn_Click" />
- <Button x:Name="NextBtn" Content="下一张" Height="40" Width="100" Margin="30,0,0,0" Click="NextBtn_Click" />
- </StackPanel>
- </Border>
- </Grid>
- </Page>
|