Beispiel #1
0
 public void Mute()
 {
     if (_parent.IsConnected())
     {
         _parent.AsyncEventAction("Mute");
     }
 }
Beispiel #2
0
 public void EjectDrive()
 {
     if (_parent.MpcLoaded)
     {
         _parent.AsyncEventAction("EjectTray");
     }
 }
Beispiel #3
0
 public void PlayPause()
 {
     if (_parent.MpcLoaded)
     {
         _parent.MpcHcRemote.Play();
     }
     else
     if (_parent.IsConnected())
     {
         _parent.AsyncEventAction("PlayerControl(Play)");
     }
 }