Pijus
Pijus

Reputation: 53

Cscore play state change event

I'm making simple audio player with c# using the cscore library. However, because of lack of documentation I'm not able to find documentation for play state change event. Can you give me example? I need something like this example in WmpLib:

player.PlayStateChange += new WMPLib
    ._WMPOCXEvents_PlayStateChangeEventHandler(player_PlayStateChange);

Upvotes: 1

Views: 381

Answers (1)

Florian
Florian

Reputation: 5994

There is a stopped event. But no event for playing or paused playbackstate.

Upvotes: 2

Related Questions