using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Runtim ...
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Runtime.Remoting.Services;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Day10_0200單例
{
public partial class FrmPlay : Form
{
public static FrmPlay OnlyOneForm;
//1.構造私有
private FrmPlay()
{
InitializeComponent();
}
public string path;
private void FrmPlay_Load(object sender, EventArgs e)
{
}
public void PlaySong()
{
Player1.URL = path;
}
//靜態方法
public static FrmPlay GetInstance()
{
if (OnlyOneForm==null)
{
OnlyOneForm=new FrmPlay();
return OnlyOneForm;
}
else
{
return OnlyOneForm;
}
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Day10_0200單例
{
public partial class FrmList : Form
{
public FrmList()
{
InitializeComponent();
}
private void FrmList_Load(object sender, EventArgs e)
{
//整行選中
dgvList.SelectionMode= DataGridViewSelectionMode.FullRowSelect;
//將dgv和ContextMenuStrip bind
dgvList.ContextMenuStrip = cms_list;
List<Song> list=new List<Song>();
Song s1 = new Song("001", "北京北京", "D:\\song\\所謂朋友.mp3");
Song s2 = new Song("002", "北京北京", "D:\\song\\吳雨霏 - 生命樹.mp3");
Song s3 = new Song("003", "北京北京", "D:\\song\\戰長沙 - 簫配樂 - 純音樂版.mp3");
list.Add(s1);
list.Add(s2);
list.Add(s3);
dgvList.DataSource = list;
}
private void 播放ToolStripMenuItem_Click(object sender, EventArgs e)
{
FrmPlay frm = FrmPlay.GetInstance();
frm.path = dgvList.SelectedRows[0].Cells[2].Value.ToString();
frm.Show();
frm.PlaySong();
}
}
}