Beispiel #1
0
        private void PlaySound(System.IO.Stream uri)
        {
            JouerSonEventArgs p  = new JouerSonEventArgs(uri);
            TrousseGlobale    TG = new TrousseGlobale();

            TG.OnJouerSon(p);
        }
Beispiel #2
0
 public virtual void OnJouerSon(JouerSonEventArgs e)
 {
     if (JouerSon != null)
     {
         JouerSon(this, e);
     }
 }