Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ravensorb committed Jun 3, 2016
2 parents c2b76fa + 126ee85 commit 992942c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ Here is a sample XAML Page
VideoSource="{Binding PlaybackUrl}"
WidthRequest="600" />
<StackLayout Orientation="Horizontal">
<Button Command="{Binding Path=RewindCommand, Source={x:Reference video}, Converter={StaticResource intToTimeSpanConverter}, ConverterParameter=-5}" Text="Rewind" />
<Button Command="{Binding Path=SeekCommand, Source={x:Reference video}, Converter={StaticResource intToTimeSpanConverter}, ConverterParameter=-5}" Text="Rewind" />
<Button Command="{Binding Path=PlayCommand, Source={x:Reference video}}" Text="Play" />
<Button Command="{Binding Path=PauseCommand, Source={x:Reference video}}" Text="Pause" />
<Button Command="{Binding Path=StopCommand, Source={x:Reference video}}" Text="Stop" />
<Button Command="{Binding Path=FastForwardCommand, Source={x:Reference video}, Converter={StaticResource intToTimeSpanConverter}, ConverterParameter=5}" Text="FastForward" />
<Button Command="{Binding Path=SeekCommand, Source={x:Reference video}, Converter={StaticResource intToTimeSpanConverter}, ConverterParameter=5}" Text="FastForward" />
</StackLayout>
<StackLayout Orientation="Vertical">
<Label Text="{Binding Position, StringFormat='Position {0}'}" />
Expand Down

0 comments on commit 992942c

Please sign in to comment.