Skip to content

Instantly share code, notes, and snippets.

@mo10
Created March 9, 2018 18:24
Show Gist options
  • Save mo10/fea80a52bebb198c002fd24e862fbc2c to your computer and use it in GitHub Desktop.
Save mo10/fea80a52bebb198c002fd24e862fbc2c to your computer and use it in GitHub Desktop.
让ContextMenuStrip在鼠标指针右侧显示
void contextMenuStrip_Opening(object sender, CancelEventArgs e)
{
ContextMenuStrip menuStrip = (sender as ContextMenuStrip);
menuStrip.Show(Cursor.Position, ToolStripDropDownDirection.AboveRight);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment