| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1048 人关注过本帖
标题:如何在listbox中双击实现事件
只看楼主 加入收藏
或许还有人
Rank: 2
来 自:成都
等 级:论坛游民
帖 子:21
专家分:19
注 册:2012-2-22
结帖率:100%
收藏
 问题点数:0 回复次数:2 
如何在listbox中双击实现事件
我在用vs2010写一个mp3的播放器,想在listbox中的歌曲列表实现双击播放,请问怎么实现??
搜索更多相关主题的帖子: 如何 播放器 
2012-06-10 22:39
或许还有人
Rank: 2
来 自:成都
等 级:论坛游民
帖 子:21
专家分:19
注 册:2012-2-22
收藏
得分:0 
public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void 添加ToolStripMenuItem_Click(object sender, EventArgs e)
        {
             OpenFileDialog of = new OpenFileDialog();
            of.Multiselect = true;
            of.Filter = "音频文件(*.wav;*.snd;*.au;*.aif;*.aifc;*.aiff;*.wma;*.mp3)|*.wav;*.snd;*.au;*.aif;*.aifc;*.aiff;*.wma;*.mp3";
            if (of.ShowDialog() == DialogResult.OK)
            {
                foreach (string filename in of.FileNames)
                    this.axWindowsMediaPlayer1.currentPlaylist.insertItem(
                        this.axWindowsMediaPlayer1.currentPlaylist.count,
                        this.axWindowsMediaPlayer1.newMedia(filename));
                listBox1.Items.AddRange(of.SafeFileNames);
            }
        }

      

        private void 全部移除ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (listBox1.Items.Count > 0)
            {
               axWindowsMediaPlayer1.Ctlcontrols.stop();
                listBox1.Items.Clear();
              axWindowsMediaPlayer1.currentPlaylist.clear();
            }
        }

        private void 单项移除ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            
            if (listBox1.Items.Count > 0)
            {
                int index = listBox1.SelectedIndex;
                axWindowsMediaPlayer1.currentPlaylist.removeItem(
                  axWindowsMediaPlayer1.currentPlaylist.get_Item(index));
                listBox1.Items.RemoveAt(index);
            }
        
        }
        private void ListBox1_DoubleClick(object sender, EventArgs e)
        {
         
        }


这是代码
2012-06-10 22:45
或许还有人
Rank: 2
来 自:成都
等 级:论坛游民
帖 子:21
专家分:19
注 册:2012-2-22
收藏
得分:0 
帮忙写一哈listbox1_DoubleClick的实现
2012-06-10 22:46
快速回复:如何在listbox中双击实现事件
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.050802 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved