Hi Luis,
To disable the context menu of the NDiagramCommandBarsManager you need to set its AllowCustomize property to false and also you have to set AllowHide property to each toolbar to false:
nDiagramCommandBarsManager1.AllowCustomize =
{
toolbars[i].AllowHide =
}
Regards,
Angel.
Thank you. Is there a way to disable the right click menu to not to allow the customize toolbar to appear?
Thanks again.
Hello Luis,
You can hide a toolbar by setting its Visible property to false:
nDiagramCommandBarsManager1.Toolbars[1].Visible = false;