Hi,
is there way to show the screent tip on disabled buttons used in a context menu?
I tried
ToolTipService.SetShowOnDisabled(btn, true);
but that doesn't work.
Here is my code:
var contextMenu = new ActiProContextMenu();
var menu = new ActiProMenu();
contextMenu.Items.Add(menu);
var btn = new ActiProButton(PhxCommands.CAFromSelection);
btn.IsEnabled = false;
menu.Items.Add(btn);
ScreenTipService.SetScreenTipIsEnabled(btn, true);
ToolTipService.SetShowOnDisabled(btn, true);
Any ideas?