I have a mediaelement in a WPF app. I'm trying to show the current position as a video plays in a label.
I have bound the Position to a label but it doesn't update when the video plays. It just shows 00:00:00.
How do I update the label with the current position as the video plays?
<MediaElement x:Name="ME" Grid.Column="1" />
<Label x:Name="lblTime" Content="{Binding Position, ElementName=ME}" />