请帮忙,谢谢.

解决方案 »

  1.   

    自己画MenuItem,然后在点击事件里Show一个ContextMenu
      

  2.   

    自己画MenuItem?不太明白,能详细点吗
      

  3.   

    我的TOOLBAR中可以嵌入一个MenuItem吗?
      

  4.   

    自己画MenuItem,然后在点击事件里Show一个ContextMenu
    试试
      

  5.   

    private void button1_Click(object sender, EventArgs e)
            {
                this.contextMenuStrip1.Show(button1.PointToScreen(new Point(0,0)).X, 
                    button1.PointToScreen(new Point(0,0)).Y + button1.Height);
            }