Hi Filippo,
It would be very helpful for me (maybe for other users i suppose) if you could add a new method, something like SetContextMenuItemEnabled(int index, bool value) to enable or disable any item of the context menu we associate with the ListView control.
for example
Code:
public void SetContextMenuItemEnabled(int index, bool value)
{
context1.MenuItems[index].Enabled = value;
}
Thank you,
George.