資源描述:
《C#開(kāi)發(fā)音樂(lè)播放器》由會(huì)員上傳分享,免費(fèi)在線(xiàn)閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫(kù)。
1、功能簡(jiǎn)介:1、循環(huán)模式:順不播放axWMusicPlayer.settings.setMode("shuffle",false);全部循環(huán)axWMusicPlayer.settings.setMode("loop",true);隨機(jī)播放axWMusicPlayer.settings.setMode("shuffle",true);2、模擬定時(shí)關(guān)機(jī)程序?qū)懙蕉〞r(shí)關(guān)機(jī),具體的調(diào)用定時(shí)關(guān)機(jī)程序省略了,程序中相應(yīng)地方有注解。定時(shí)關(guān)機(jī)代碼1privatevoid關(guān)機(jī)時(shí)間toolStripTextBox_KeyPress(objectsender,KeyPressEve
2、ntArgse)2{3if(e.KeyChar==(char)Keys.Enter&&關(guān)機(jī)時(shí)間toolStripTextBox.Text!="")4{5try6{7DateTimetime=DateTime.Parse(關(guān)機(jī)時(shí)間toolStripTextBox.Text);8Timefontfont=newTimefont(time.Hour,time.Minute,0);9if(font.CompareTo(newTimefont(DateTime.Now.Hour,DateTime.Now.Minute,0))==0)//當(dāng)前關(guān)機(jī)時(shí)間10{11if(M
3、essageBox.Show("你設(shè)定的關(guān)機(jī)時(shí)間是當(dāng)前計(jì)算機(jī)時(shí)間,是否直接關(guān)機(jī)?","提示",MessageBoxButtons.YesNo,MessageBoxIcon.Information)==DialogResult.OK)12{13MynotifyIcon.Icon=Icon.ExtractAssociatedIcon(PathBase+"\Images\"+"ShutDown_notifyIcon.ico");14//15//調(diào)用關(guān)機(jī)程序16//17}18else19{20return;21}22}23if(font.CompareTo(n
4、ewTimefont(DateTime.Now.Hour,DateTime.Now.Minute,0))<0)//過(guò)去關(guān)機(jī)時(shí)間24{25MessageBox.Show("此時(shí)間已是過(guò)去時(shí)間,設(shè)定無(wú)效","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);26return;27}28if(font.CompareTo(newTimefont(DateTime.Now.Hour,DateTime.Now.Minute,0))>0)//有效關(guān)機(jī)時(shí)間29{3031ShutDownTime=關(guān)機(jī)時(shí)間toolSt
5、ripTextBox.Text;32MessageBox.Show("成功設(shè)置定時(shí)關(guān)機(jī),計(jì)算機(jī)將于“"+ShutDownTime+"”關(guān)機(jī)……*︶︵︶*","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);33this.關(guān)機(jī)時(shí)間toolStripTextBox.Visible=false;34this.取消定時(shí)關(guān)機(jī)QToolStripMenuItem.Visible=true;3536//37//調(diào)用關(guān)機(jī)程序38//39}40}41catch42{43MessageBox.Show("日期格式不正確
6、,請(qǐng)重新輸入。","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);44return;45}46}47if(e.KeyChar==(char)Keys.Enter&&關(guān)機(jī)時(shí)間toolStripTextBox.Text=="")48{49關(guān)機(jī)時(shí)間toolStripTextBox.Visible=false;50}51}3、歌曲列表信息保存在XML文件中添加歌曲保存代碼1privatevoidbtnList_Click(objectsender,EventArgse)//添加歌曲2{3openFileD
7、ialog1.Title="添加歌曲";4openFileDialog1.FileName="";5openFileDialog1.Multiselect=true;6openFileDialog1.Filter="Mp3文件
8、*.mp3
9、Wav文件
10、*.wav
11、Wma文件
12、*.wma
13、Wmv文件
14、*.wmv
15、所有格式
16、*.*";7openFileDialog1.InitialDirectory=Environment.GetFolderPath(Environment.SpecialFolder.MyMusic);8try9{10if(openFileD
17、ialog1.ShowDialog()==DialogResult