views:

513

answers:

2

How do i assign a separate context menu to the column headers of a listview in c#?

+3  A: 

I guess this should be useful:
http://www.codeproject.com/KB/list/HeaderRightClick.aspx

Zyphrax
+2  A: 

ObjectListView (an open source wrapper around .NET WinForms ListView) has an ColumnRightClick event. The demo shows how to show a menu in response to that event.

Grammarian