两种方法:
1.将label的背景色设置为何你的WMP控件相同;
2.使用无边框透明背景的TextBox替代label,这个的好处是TextBox还允许选取内容;

解决方案 »

  1.   

    我以前用过这种:private void timetest()
    {
        MusicPlayer.Invoke((EventHandler)delegate
        {
            while (true)
            {
                Graphics g = Graphics.FromHwnd(MusicPlayer.Handle);
                g.DrawString(DateTime.Now.ToString(), new Font(FontFamily.GenericSerif, 9f), Brushes.Red, new PointF(0, 0));
                Application.DoEvents();
            };
        });
    }
    System.Threading.Thread th;
    private void Play_Click(object sender, EventArgs e)
    {
        //你的播放操作    th = new System.Threading.Thread(new System.Threading.ThreadStart(timetest));
        th.Start();
    }