<Button Width="104.5" Command="{Binding StartCommand}" Content="开始" Margin="0,0,1,0" Foreground="White" Cursor="Hand">
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="#326CF3" CornerRadius="5,0,0,5">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" />
</Border>
</ControlTemplate>
</Button.Template>
</Button>
<Button Width="104.5" Command="{Binding ClearVideoDataListCommand}" Content="清空" Margin="0,0,0,0" Foreground="White" Cursor="Hand">
<Button.Template>
<ControlTemplate TargetType="Button">
<Border Background="#326CF3" CornerRadius="0,5,5,0">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" />
</Border>
</ControlTemplate>
</Button.Template>
</Button>