I see that there is a ScreenTip associated with the button but it's not functioning for me. Snippet of code:
var coolScreenTip =
new
RadOffice2007ScreenTipElement();
coolScreenTip.CaptionLabel.Text = wrkItem.GroupTitle;
coolScreenTip.MainTextLabel.Text =
string
.Format(
"{0}\n{1}"
,wrkItem.Title, wrkItem.Description);
coolScreenTip.FooterTextLabel.Text =
"Test Footer"
;
coolScreenTip.FooterVisible =
true
;
var QuickMenuItem =
new
RadMenuButtonItem(strTitle)
{
// ToolTipText = wrkItem.Description,
KeyTip =
"quick"
,
Tag = wrkItem.OriginId,
ScreenTip = coolScreenTip
};
QuickMenuItem.Click += quickMenu_Click;
radMenuItemQuick.Items.Add(QuickMenuItem);
Hovering over any button does not show the screen tip. This code seems to work fine for inside of a grid, but there is a "needscreentip" event.
Any help would be appreciated!