views:

565

answers:

1

I have added and mediaplayer control to my c# application, and I can make it play a .wma song. My problem is that i want to see if the player is playing. Is there an event that I can use? Or is it a way I can see for how many seconds a song has been playing?

A: 

Yes, you can check the PlayState property or handle the PlayStateChange event.

JP Alioto
Thank you. Just what I needed
CruelIO