SoundPlayerControl 0.9.0.3
See the version list below for details.
dotnet add package SoundPlayerControl --version 0.9.0.3
NuGet\Install-Package SoundPlayerControl -Version 0.9.0.3
<PackageReference Include="SoundPlayerControl" Version="0.9.0.3" />
paket add SoundPlayerControl --version 0.9.0.3
#r "nuget: SoundPlayerControl, 0.9.0.3"
// Install SoundPlayerControl as a Cake Addin #addin nuget:?package=SoundPlayerControl&version=0.9.0.3 // Install SoundPlayerControl as a Cake Tool #tool nuget:?package=SoundPlayerControl&version=0.9.0.3
This control can be used by dragging and dropping it onto a form, or programattically.
Uses Dot NET 4.8
(Check the test code for more examples)
Very simple example:
SoundPlayer sp; sp = new SoundPlayer(@"C:\Windows\Media\Alarm01.wav", 95); sp.PlaybackStopped += WaveOutput_PlaybackStopped; sp.PlaySound();
...
private void WaveOutput_PlaybackStopped(object sender, NAudio.Wave.StoppedEventArgs e) { MessageBox.Show("Programmatic sound has finished playing"); sp.Dispose(); }
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net48 is compatible. net481 was computed. |
-
- NAudio (>= 1.9.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added proper enabled/disabled display change (make it clear to users)