[Solved] SoudPlayer plays the same file again and again [closed]
[ad_1] Inside the Setter for the SoundLocation property is an interesting check: set { if (value == null) { value = string.Empty; } if (!this.soundLocation.Equals(value)) { this.SetupSoundLocation(value); this.OnSoundLocationChanged(EventArgs.Empty); } } You can see that it looks to see if the new location differs from the old one. If it does, then it does some setup … Read more