vote up 2 vote down star

I have a simple app, that has media element in it, and it plays some movies, one after another. I want to have a 15 seconds delay between one movie stops playing, and the next one starts. I'm new to WPF and though I know how to do this the old (WinForms) way with a Timer and control.Invoke, I thought that there must be a better way in WPF. Is there?

flag

77% accept rate

1 Answer

vote up 2 vote down check

The DispatcherTimer is what you want. In this instance you'd create a DispatcherTimer with an interval of 15 seconds, kick off the first video. Then when that video has completed enable the timer and in the tick event show the next video, and set the timer to disabled so it doesn't fire every 15 seconds. DispatcherTimer lives in the System.Windows.Threading namespace.

DispatcherTimer yourTimer = new DispatcherTimer();

yourTimer.Interval = new TimeSpan(0, 0, 15); //fifteen second interval
yourTimer.Tick += new EventHandler(yourTimer_Tick);
firstVideo.Show();

Assuming you have an event fired when the video is finished then set

yourTimer.Enabled = True;

and then in the yourTimer.Tick event handler

private void yourTimer_Tick(object sender, EventArgs e)
{
    yourTimer.Enabled = False;//Don't repeat every 15 seconds
    nextVideo.Show();
}
link|flag
does it execute on UI thread or do I have to do control.Invoke like with normal timer? – Krzysztof Koźmic Feb 10 at 11:17
thanks, that's exactly what I needed. – Krzysztof Koźmic Feb 10 at 11:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.