資源簡介
為了吸引10歲兒子學習編程,告別枯燥,特意改寫了這位兄弟的共享代碼,謝謝原作者!原版http://download.csdn.net/detail/y85171642/6519511

代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Text;
using?Microsoft.DirectX.DirectSound;
using?System.Threading;
namespace?PlayPlane_01
{
????class?DXPlay
????{
????????private?string?musicPath;
????????Form1?form;
????????public?DXPlay(Form1?formstring?musicPath)
????????{
????????????this.form?=?form;
????????????this.musicPath?=?musicPath;
????????}
????????public?void?Play()
????????{
????????????SecondaryBuffer?secBuffer;//緩沖區對象????
????????????Device?secDev;//設備對象????
????????????secDev?=?new?Device();
????????????secDev.SetCooperativeLevel(form?CooperativeLevel.Normal);//設置設備協作級別????
????????????secBuffer?=?new?SecondaryBuffer(musicPath?secDev);//創建輔助緩沖區????
????????????secBuffer.Play(0?BufferPlayFlags.Default);//設置緩沖區為默認播放
????????}
????????delegate?void?DelegatePlay();
????????public?void?ThreadPlay()
????????{
????????????Thread?t?=?new?Thread(new?ThreadStart(CorssThreadPlay));
????????????t.Start();
????????}
????????public?void?CorssThreadPlay()
????????{
????????????if?(form.InvokeRequired)
????????????{
????????????????DelegatePlay?dp?=?new?DelegatePlay(CorssThreadPlay);
????????????????form.Invoke(dp);
????????????}
????????????else
????????????{
????????????????SecondaryBuffer?secBuffer;//緩沖區對象????
????????????????Device?secDev;//設備對象????
????????????????secDev?=?new?Device();
????????????????secDev.SetCooperativeLevel(form?CooperativeLevel.Normal);//設置設備協作級別????
????????????????secBuffer?=?new?SecondaryBuffer(musicPath?secDev);//創建輔助緩沖區????
????????????????secBuffer.Play(0?BufferPlayFlags.Default);//設置緩沖區為默認播放
????????????}
????????}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
????.CA....????178176??2005-03-18?16:23??PlayPlane_01\bin\Debug\dll\Microsoft.DirectX.DirectSound.dll
????.CA....????223232??2005-03-18?16:23??PlayPlane_01\bin\Debug\dll\Microsoft.DirectX.dll
????.CA....?????28672??2017-07-14?18:01??PlayPlane_01\bin\Debug\PlayPlane_01.exe
????.CA....?????56832??2017-07-14?18:01??PlayPlane_01\bin\Debug\PlayPlane_01.pdb
????.CA....?????11608??2017-07-14?18:02??PlayPlane_01\bin\Debug\PlayPlane_01.vshost.exe
????.CA....???????490??2013-03-18?17:00??PlayPlane_01\bin\Debug\PlayPlane_01.vshost.exe.manifest
????.CA....?????25282??2013-08-23?11:22??PlayPlane_01\bin\Debug\resource\bg_01.jpg
????.CA....?????26800??2013-08-23?11:22??PlayPlane_01\bin\Debug\resource\bg_02.jpg
????.CA....?????14124??1992-09-10?10:59??PlayPlane_01\bin\Debug\resource\BOMB3.WAV
????.CA....?????25382??1995-06-29?13:25??PlayPlane_01\bin\Debug\resource\BOMB5.WAV
????.CA....?????11303??2013-08-23?11:22??PlayPlane_01\bin\Debug\resource\explosion.mp3
????.CA....?????55244??2013-11-05?22:45??PlayPlane_01\bin\Debug\resource\explosion.wav
????.CA....??????3391??2013-08-23?11:37??PlayPlane_01\bin\Debug\resource\font.fnt
????.CA....??????5622??2013-08-23?11:22??PlayPlane_01\bin\Debug\resource\font_0.png
????.CA....??????6074??2013-08-26?11:10??PlayPlane_01\bin\Debug\resource\icon36x36?-?副本.png
????.CA....??????6074??2013-08-26?11:10??PlayPlane_01\bin\Debug\resource\icon36x36.png
????.CA....??????8111??2013-08-26?11:10??PlayPlane_01\bin\Debug\resource\icon48x48.png
????.CA....?????12047??2013-08-26?11:10??PlayPlane_01\bin\Debug\resource\icon72x72.png
????.CA....??????6191??2013-08-26?15:27??PlayPlane_01\bin\Debug\resource\loading.gif
????.CA....?????39900??2017-07-14?16:44??PlayPlane_01\bin\Debug\resource\plane\A-10A?Thunderbolt?II.png
????.CA....?????35180??2017-07-14?16:44??PlayPlane_01\bin\Debug\resource\plane\AV-8B?Harrier?II.png
????.CA....?????32724??2017-07-14?16:45??PlayPlane_01\bin\Debug\resource\plane\F-117A?Night?Hawk.png
????.CA....?????41964??2017-07-14?16:43??PlayPlane_01\bin\Debug\resource\plane\F-14B?Tomcat.png
????.CA....?????28434??2017-07-14?16:45??PlayPlane_01\bin\Debug\resource\plane\F-15C?Eagle.png
????.CA....?????30335??2017-07-14?16:45??PlayPlane_01\bin\Debug\resource\plane\F-15E?Strike?Eagle.png
????.CA....?????32420??2017-07-14?16:45??PlayPlane_01\bin\Debug\resource\plane\F-16A?Fighting?Falcon.png
????.CA....?????37813??2017-07-14?16:43??PlayPlane_01\bin\Debug\resource\plane\F-4C?Phantom?II.png
????.CA....?????36433??2017-07-14?16:43??PlayPlane_01\bin\Debug\resource\plane\F-4J?Phantom?II.png
????.CA....?????31483??2017-07-14?16:44??PlayPlane_01\bin\Debug\resource\plane\F-A-18C?Hornet.png
????.CA....?????27583??2017-07-14?16:44??PlayPlane_01\bin\Debug\resource\plane\MiG-21F?Fishbed.png
............此處省略99個文件信息
評論
共有 條評論