using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Media;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace _66.随便乱玩
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
SoundPlayer sp = new SoundPlayer();
sp.SoundLocation = @"C:\Users\Administrator\Desktop\我爱学习\o泡果奶 1.wav";//路径这里放你自己(o泡)本地的路径,音频格式要wav格式
sp.Play();
int i = 0;
MessageBox.Show("三年二班的李子明同学,你妈妈给你送o泡果奶来了!");
MessageBox.Show("别点太快,不是死循环,点完就没歌听了");
while (true)
{
i++;
if (i == 0)
{
MessageBox.Show("给我O泡");
}
else if (i == 1)
{
MessageBox.Show("给我O泡");
}
else if (i == 2)
{
MessageBox.Show("o泡果奶哦哦哦");
}
else if (i == 3)
{
MessageBox.Show("我要o泡");
}
else if (i == 4)
{
MessageBox.Show("我要o泡");
}
else if (i == 5)
{
MessageBox.Show("o泡果奶要要要");
}
else if (i == 6)
{
MessageBox.Show("喝o泡果奶");
}
else if (i == 7)
{
MessageBox.Show("把清凉抱抱");
}
else if (i == 8)
{
MessageBox.Show("喝o泡果奶");
}
else if (i == 9)
{
MessageBox.Show("把好喝抱抱");
}
else if (i == 10)
{
MessageBox.Show("给我o泡");
}
else if (i == 11)
{
MessageBox.Show("给我o泡");
}
else if (i == 12)
{
MessageBox.Show("我要o泡");
}
else if (i == 13)
{
MessageBox.Show("o泡果奶我还要~~旺旺~");
}
else
{
MessageBox.Show("感谢收听由李子明同学赠送的O泡果奶一首");
break;
}
}
sp.Stop();
}
}
}
|