找传奇、传世资源到传世资源站!

C# 自动播放音乐 软件源码下载

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

这是一款自用的小程序,定时自动播放音乐。界面如下,很简洁。能自动跳过周六和周天。
C# 自动播放音乐 软件源码下载 C#多媒体编程-第1张 需要启用 Windows Media Player 功能,否则会提示【System.Runtime.InteropServices.COMException:“没有注册类】操作步骤:控制面板>>程序>>启用或者关闭windows 功能>>选中 媒体功能>>Windows Media Player,点击确定即可from clipboard   //设置定时时间
        public int SetTime(string str)
        {
            int tt = 0;
            bool b = int.TryParse(str, out tt);
            if (str != "")
            {
                if (b == true)
                {
                    if (tt >= 0 && tt <= 9)
                    {
                        str = "0" tt.ToString();
                    }
                    str = tt.ToString();
                    tt = Convert.ToInt32(str);
                }
                else
                {
                    timer1.Enabled = false;
                    btnStart.Text = "启动";
                    MessageBox.Show("请输入数字!");
                }
            }
            else
            {
                MessageBox.Show("请设置时间!");
            }
            return tt;       //定时播放音乐

        public void PlaySongs()
        {
            List<string> list = new List<string>();
            list.Add(Directory.GetCurrentDirectory());
            list.Add(@"\1.mp3");
            string filePath = list[0] list[1];
            axWindowsMediaPlayer1.URL = filePath;
            axWindowsMediaPlayer1.Ctlcontrols.play();
            axWindowsMediaPlayer1.settings.playCount = 2;
        }

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复