I am creating a custom control using c# in windows form application that uses windows media player control. I want to create a property isPlaying
as a boolean. If its true, the video should play and if its false, it should pause.
In simple words, I have created a new user control and have inserted a windows media player control in it and I have kept its control box out of the control so its not visible. I now want to create a true/false property for it named isPlaying
and if its true, the video should play and if its false, it should pause.
Do you mean something as simple as this ?