Hi,
When I disable a control in WPF, like say a Menu item, like
MenuItem aMenuItem = ... aMenuItem.IsEnabled = false;
the text in the MenuItem is still active, that is it is not grayed out as you would expect when items are disabled.
Is there a simple way to do this not only for Menu items but for any WPF control?
Thanks