Disabling the buttons is not the problem. I want the image to be greyed out as well.
I did as you suggest in the "IGPaint with Ribbon CS" sample:
foreach
(ToolBase tool in this.ultraToolbarsManager1.Ribbon.Tabs[0].Groups[0].Tools)
{
tool.SharedProps.Enabled = false;
}
You can see the result in the attachement.
The items in the quick launch are greyed out. The words beside the buttons (cut/Redo/Copy) are greyed out. But the Images for those buttons are not greyed out in the ribbon (paste image, cut image, redo image, copy image).
Any ideas?
Thanks,
(I am using the NetAdvantage 2006 V3)