-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
29 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System; | ||
using System.Media; | ||
using System.Windows; | ||
|
||
namespace tweetz.core.Services | ||
{ | ||
public static class SoundService | ||
{ | ||
public static void PlayDefaultNotifySound() | ||
{ | ||
using var notifySound = Application.GetResourceStream(new Uri("pack://application:,,,/notify.wav"))!.Stream; | ||
using var player = new SoundPlayer(notifySound); | ||
player.PlaySync(); | ||
TraceService.Message("Played default sound"); | ||
} | ||
|
||
public static void PlayFromSoundSource(string filename) | ||
{ | ||
using var player2 = new SoundPlayer(filename); | ||
player2.PlaySync(); | ||
TraceService.Message("Played from sound source"); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters