I can't achieve simple thing. I'm using MediaElement and I want to play my video not from the beginning, but from, let's say, position 5 sec.
Workflow:
LoadedBehavior <- Manual;
Source <- some_source;
Play();
Inside MediaOpened:
Position <- 5 sec
Problem: For the few moments I see the beginning of the video and then it switches to 5 sec. I know that if I want to control Position manually I need to use LoadedBehavior Manual, but how can I make the video be Paused immediately after loading?