Hi,
I have difficulties trying to use toolTipController with Treelist.
I add a tooltipcontroller to my form, and assign Tootilcontroller treelist's property to it.
AllowHtmlText is set to true, TooTipType is set to supertip.
Then I add that code
C#void toolTipController1_GetActiveObjectInfo(object sender, DevExpress.Utils.ToolTipControllerGetActiveObjectInfoEventArgs e)
{
if (e.SelectedControl.Name == "treeListAdresses")
{
DevExpress.Utils.SuperToolTip superToolTip = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipItem toolTipItem = new DevExpress.Utils.ToolTipItem();
toolTipItem.Text = myContent;
superToolTip.Items.AddTitle(myHeader);
superToolTip.Items.Add(toolTipItem);
superToolTip.Items.AddSeparator();
superToolTip.Items.AddTitle(myFooter);
DevExpress.Utils.ToolTipControlInfo myInfo = new DevExpress.Utils.ToolTipControlInfo ();
myInfo.SuperTip = superToolTip;
e.Info = myInfo ;
}
}
Tooltips are never shown, what am I missing ?
Regards