2017年1月9日

C#中OpenFileDialog的使用

摘要: // 获取文件夹绝对路径 显示在 txtbox 控件里 System.Windows.Forms.FolderBrowserDialog folder = new System.Windows.Forms.FolderBrowserDialog(); if (folder.ShowDialog() 阅读全文

posted @ 2017-01-09 14:35 带刀侍卫++i 阅读(448) 评论(0) 推荐(0)

AxWindowsMediaPlayer创建、添加播放列表(C#)

摘要: // 创见打开对话框对象实例 OpenFileDialog openFileDialog = new OpenFileDialog(); //设置为可以打开多个文件 openFileDialog.Multiselect = true; //设置打开文件格式 openFileDialog.Filter 阅读全文

posted @ 2017-01-09 00:53 带刀侍卫++i 阅读(1155) 评论(0) 推荐(0)

AxWindowsMediaPlayer的详细用法

摘要: 属性/方法名: 说明: [基本属性] URL:String; 指定媒体位置,本机或网络地址 uiMode:String; 播放器界面模式,可为Full, Mini, None, Invisible playState:integer; 播放状态,1=停止,2=暂停,3=播放,6=正在缓冲,9=正在连 阅读全文

posted @ 2017-01-09 00:10 带刀侍卫++i 阅读(4704) 评论(0) 推荐(0)

C# Windows Media Player控件的常用属性及方法

摘要: C# Windows Media Player 控件的常用属性及方法 1 、基本属性 URL 指定媒体位置,本机或网络地址 例如: axWindowsMediaPlayer1.URL = @"f:\aa.mp3" ; uiMode 播放器界面模式,可为 Full, Mini, None, Invis 阅读全文

posted @ 2017-01-09 00:09 带刀侍卫++i 阅读(10216) 评论(0) 推荐(0)

导航