Could someone tell me how to go about this? I've a dataGrid and when a user right-click on one of the row's header I want a context menu pop-up with the menu choices "View Detail", "Cancel". Thanks in advance...

Recommended Answers

All 2 Replies

I quickly did a serach and found a bunch of stuff. Below is the link at the top of the search. Seems like what you may be looking for. Click Here

I have the following code, but it kept giving error the name 'MakeActive' is not exist in the current context. Could someone tell me what I did wrong? Thanks.

//Define different context menus for different columns
private ContextMenu contextMenuForColumn1 = new ContextMenu();

Add the following line of code in the form load event:
private void Form_Load(object sender, EventArgs e)
{
// Load all default values of controls
populateDataGridView();

// Add context mneu items
contextMenuForColumn1.MenuItems.Add("Make Active", new EventHandler(MakeActive));

}

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.