多媒體
My.Resources 加入資源圖檔、音效 圖片: 音效(WAV): Picturebox1.image=my.Resources.圖檔 My.Computer.Audio.Play(My.Resources.音效檔, AudioPlayMode.Background)
聲音 My.Computer.audio(聲音檔, 播放方式) My.Computer.audio.stop() 使用方法: 播放方式 audioPlayMode.Background audioPlayMode.WaittoComplete audioPlayMode.BackgroundLoop My.Computer.audio.stop() 使用方法: My.Computer.audio.play(“c:\ding.wav”,audioPlayMode.Background) 只能播放WAV及系統音效
Windows Media Player 工具箱按滑鼠右鍵選擇項目com元件Windows Media Player 控制撥放 AxWindowsMediaPlayer1.Ctlcontrols.play() AxWindowsMediaPlayer1.Ctlcontrols.pause() AxWindowsMediaPlayer1.Ctlcontrols.stop() AxWindowsMediaPlayer1.Ctlcontrols.previous() AxWindowsMediaPlayer1.Ctlcontrols.next() path =My.Computer.FileSystem.CurrentDirectory Private Sub 影片ToolStripMenuItem_Click(ByVal) Handles 影片ToolStripMenuItem.Click AxWindowsMediaPlayer1.Visible = True AxWindowsMediaPlayer1.URL = path & “\5.wmv" AxWindowsMediaPlayer1.Ctlcontrols.play() End Sub
PictureBox控制項 PictureBox常用的屬性
PictureBox控制項 說明: My.Computer.FileSystem.CurrentDirectory敘述,是用來取得專案的目 前路徑(預設為 "專案資料夾\bin\Debug" 資料夾) 請注意!利用程式敘述來顯示圖片,常會因專案資料夾或圖片檔的路徑被更改,導 致圖片無法正常顯示。為了避免這種情形,我們可將圖片存放在 "專案資料夾\bin\ Debug" 資料夾中,並利用 "My.Computer.FileSystem.CurrentDirectory" 敘述來 取得目前路徑,以確保圖片能正常顯示。