Inherits from Xamarin.Forms.View Functionally, this control behaves just like a Slider. However, the Slider has a few quirks that make it unsuitable for use with tracking progress of a media player. Visually this renders a track bar as well as a thumb that shows the current position of playback. It can also be used by the person to scrub through the media by moving the thumb along the track. Properties PropertyTypeDescription PositiondoubleThe current position of the playback in fractional seconds. DurationdoubleThe total length of the media being played in fractional seconds. ThumbSizedoubleThe diameter of the drawn thumb on the play track. Defaults to 12. TrackBackgroundColorColorThe color of the track background for the region that has not been played. Defaults to 50% gray at 65% opacity. TrackProgressColorColorThe color of the track background for the played region. Defaults to the application's primary color. ThumbColorColorThe color of the thumb knob. Defaults to White. Example <Rock:MediaProgressBar Duration="{Binding Duration}" Position="{Binding Position}" />