I have a ListView which is binding against several different social sites for videos, photos etc. I have a DateTemplate defined for a video posts where I want to display a play/pause button on top of the video.
This is what my video data template looks like -as you can see, I have a mediaelement with a button on top of the element to display the video. Where I am really stuck, is how to bind the button tapped event to play the video and to hide the button upon tapped.
<DataTemplate x:Key="MyVideoTemplate">
<Grid>
<StackPanel Background="White" Orientation="Vertical" Height="600">
<StackPanel Orientation="Horizontal" Margin="15,15,0,0">
<Image Source="{Binding Path=FromUser.Pic_Square}" />
<StackPanel Orientation="Vertical" Margin="15,0,0,0">
<TextBlock
Foreground="#35619f"
Text="{Binding Path=FromUser.Name}"
FontWeight="Light"
FontFamily="Segoe UI Light"
FontSize="22"
/>
<TextBlock
Foreground="DimGray"
Margin="0,5,0,0"
Text="{Binding Path=ParsedCreatedTime}"
/>
</StackPanel>
</StackPanel>
<MediaElement
Height="450"
Width="{Binding Path=Photo.source_Postwidth}"
HorizontalAlignment="Left"
VerticalAlignment="Bottom"
AutoPlay="False"
Margin="15,15,15,0"
Source="{Binding Path=Video_source_url}"
/>
<Rectangle Fill="#7F9E9E9E" Margin="15,15,15,0" />
<Image Source="ms-appx:///Images/Play.png"
Margin="15,15,15,0"
HorizontalAlignment="Center"
VerticalAlignment="Center" />
<TextBlock
Margin="15,15,15,0"
TextTrimming="WordEllipsis"
Foreground="DimGray"
Text="{Binding Message}"
FontFamily="Segoe UI Light"
FontSize="18"
Height="40"
Width="{Binding Path=Photo.source_Postwidth}"
/>
</StackPanel>
</Grid>
</DataTemplate>
I have the DataTemplate loading inside a ListView. What I want to figure out is the following. 1. When the button/rectangle is clicked, start playing the video 2. when playing, hide the button and rectangle. 3. When paused (by clicking the media element) show the rectangle and play button again.
I would love to figure out how to do this with setter's / XAML completely rather than needing to wire up code behind. Whatever is easiest would be awesome to figure out.