Play() public method

public Play ( ) : void
return void
Exemplo n.º 1
0
 private void btnPlay_Click(object sender, System.EventArgs e)
 {
     if (null != ApplicationStreamedSound)
     {
         if (cbLoopCheck.Checked)
         {
             ApplicationStreamedSound.Loop();
         }
         else
         {
             ApplicationStreamedSound.Play();
         }
     }
 }