Example #1
0
 /// <summary>
 /// Alerta duplo de atenção
 /// Gets the sound associated with the Beep program event in the current Windows sound scheme.
 /// </summary>
 public static void DoubleBeep()
 {
     SoundUtil.Beep();
     Thread.Sleep(500);
     SoundUtil.Beep();
 }
Example #2
0
 /// <summary>
 /// Alerta duplo de tarefa
 /// Gets the sound associated with the Asterisk program event in the current Windows sound scheme.
 /// </summary>
 public static void DoubleAsterik()
 {
     SoundUtil.Asterisk();
     Thread.Sleep(500);
     SoundUtil.Asterisk();
 }