前端代码如下:
<StackPanel Grid.Row="2" Orientation="Horizontal">
<Button Content="上一页" Width="50" Height="30" Margin="5" HorizontalAlignment="Center" VerticalAlignment="Center" Style="{
DynamicResource ButtonPageStyle}">
<Button.Template>
<ControlTemplate TargetType="{x:Type Button}">
<Border BorderThickness="1" CornerRadius="3" Background="{TemplateBinding Background}">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Button.Template>
<b:Interaction.Triggers>
<b:EventTrigger EventName="Click">
<b:InvokeCommandAction Command="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type local:LoginLogView}}, Path=DataContext.LastPageCommand}" CommandParameter="{Binding}"/>
</b:EventTrigger>
</b:Interaction.Triggers>
</Button>
<Button Content="下一页" Width="50" Height="30" Margin="5" HorizontalAlignment="Center" VerticalAlignment="Center" Style="{
DynamicResource ButtonPageStyle}">
<Button.Template>
<ControlTemplate TargetType="{x:Type Button}">
<Border BorderThickness="1" CornerRadius="3" Background="{TemplateBinding Background}">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>