大侠们帮我改一下相对路径添加音乐嘛,我试了很多的方法都不能解决
public partial class 进入页面1 : Form
{
int i = 0;
public 进入页面1()
{
InitializeComponent();
SoundPlayer sp = new SoundPlayer("/知足.wav");
sp.PlayLooping();
}
private void 进入页面1_Load(object sender, EventArgs e)
{
}
private void pictureBox2_Click_1(object sender, EventArgs e)
{
i++;
pictureBox2.Image=System.Drawing.Image.FromFile("G:/myc#/Love/Love/bin/image/"+i+".jpg");
if(i==4)
MessageBox.Show("已经是最后一张,点击继续", "提示", MessageBoxButtons.OK, MessageBoxIcon.Question);
if (i == 4)
{
完结篇 zh = new 完结篇();
this.Hide();
zh.Show();
}
}