VB.NET版本音频播放器程序源代码QZQ

Imports System.IO
Imports System.Drawing
Imports System.Windows.Forms

Public Class Form1

Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
    OpenFileDialog.Filter = "MP3 Files|*.mp3|WAV Files|*.wav"
End Sub

Private Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click
    OpenFileDialog.Multiselect = True
    If OpenFileDialog.ShowDialog() <> Windows.Forms.DialogResult.OK Then Exit Sub
    For Each track As String In OpenFileDialog.FileNames
        ListBox1.Items.Add(track)
    Next
End Sub

Private Sub Button2_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button2.Click
    AxWindowsMediaPlayer1.URL = ListBox1.SelectedItem.ToString()
End Sub

Private Sub Button3_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button3.Click
    AxWindowsMediaPlayer1.Ctlcontrols.stop()
End Sub

Private Sub Button4_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button4.Click
    AxWindowsMediaPlayer1.Ctlcontrols.pause()
End Sub

Private Sub Button5_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button5.Click
    AxWindowsMediaPlayer1.Ctlcontrols.play()
End Sub

Private Sub Button6_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button6.Click
    Dim rand As New Random()
    ListBox1.SelectedIndex = rand.Next(0, ListBox1.Items.Count - 1)
    AxWindowsMediaPlayer1.URL = ListBox1.SelectedItem.ToString()
    AxWindowsMediaPlayer1.Ctlcontrols.play()
End Sub

Private Sub Button7_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button7.Click
    If ListBox1.SelectedIndex < ListBox1.Items.Count - 1 Then
        ListBox1.SelectedIndex += 1
    Else
        ListBox1.SelectedIndex = 0
    End If
    AxWindowsMediaPlayer1.URL = ListBox1.SelectedItem.ToString()
    AxWindowsMediaPlayer1.Ctlcontrols.play()
End Sub




这款软件是音乐播放器软件,基本功能都齐全完整。
音乐播放器

🎉精彩不容错过!新文章震撼登场,却因代码不全让人意犹未尽?别担心!我们为你准备了软件截图,让你先睹为快,感受其强大魅力。

✨如果你渴望解锁全部精彩内容,那么强烈建议你下载完整源代码。它将为你打开一扇通往编程新世界的大门,让你深入探索其中的奥秘,挖掘无限潜力。

🔗源代码下载网址:[https://download.csdn.net/download/qq_32257509/89435586]。赶紧行动起来,下载完整源代码,开启你的编程之旅吧!

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

EYYLTV

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值