Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
private **** Form1_Load(object sender, EventArgs e)
{
System.Media.SoundPlayer player = new System.Media.SoundPlayer();
player.Stream = XGraphics.anm2;
player.Play();
}
Bir Resources ekle.Müzik dosyanı resources'e at.Form'un load olayında çalıştırmak istiyosan,şu şekilde yap.
Using System.Media; (Unutma eklemeyi)
Kod:private **** Form1_Load(object sender, EventArgs e) { [COLOR="Red"]System.Media.[/COLOR]SoundPlayer player = new [COLOR="red"]System.Media.[/COLOR]SoundPlayer(); player.Stream = XGraphics.anm2; player.Play(); }