I have set of dynamically created checkboxes on a panel and also have implemented ContextMenuStrip on all checkboxes. I am unable to detect that which control currently displays the shortcut menu defined in the ContextMenuStrip.
Rename a checkbox by implementing ContextMenu c# winforms
240 Views Asked by Vipin Sharma At
2
There are 2 best solutions below
2

Use the SourceControl() property.
With a ContextMenu:
private void menuItem1_Click(object sender, EventArgs e)
{
CheckBox cb = (CheckBox)contextMenu1.SourceControl;
Console.WriteLine(cb.Name);
}
With a ContextMenuStrip:
private void renameToolStripMenuItem_Click(object sender, EventArgs e)
{
CheckBox cb = (CheckBox)contextMenuStrip1.SourceControl;
Console.WriteLine(cb.Name);
}
I have got the answer.