I didn't find any event handlers like SeekCompleted
build in VLC.MediaElement
. I check if seek has completed using following dirty code. Is there any better way to do this?
//SET SEEK POSITION
VLCMediaPlayerElement.Position = Position;
//WAIT UNTIL SEEK HAS BEEN COMPLETED
while (VLCMediaPlayerElement.Position == Position)
{
await Task.Delay(1);
}