c# ContextMenuStrip显示位置修改

       private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;

       // 参数:
       //   sender:
       //     作为 System.Windows.Forms.ToolStripDropDownButton 位置的参考点的控件(通常是 System.Windows.Forms.ToolStripDropDown)。
       //
       //   e.X:
       相对sender控件的相对坐标
       //     控件的水平屏幕坐标(以像素为单位)。
       //
       //   e.Y:
        相对sender控件的相对坐标
       //     控件的垂直屏幕坐标(以像素为单位)
      contextMenuStrip1.Show((Control)sender, e.X, e.Y);

你可能感兴趣的:(c#)