AD
Administrator
Syncfusion Team
March 16, 2006 05:54 AM UTC
Hi,
The way to accomplish this would using PaletteGroupView.GroupViewItemHighlighted event method and setting the tool tip for the highlighted palette item within this method.
Kindly look at the following sample code snippet.
ToolTip toolTip = new ToolTip();
private void paletteGroupView1_GroupViewItemHighlighted(object sender, EventArgs e)
{
SymbolModel symModel =(SymbolModel) this.paletteGroupView1.Palette.GetChild(this.paletteGroupView1.HighlightedItem);
if(symModel != null)
{
toolTip.SetToolTip(this.paletteGroupView1,symModel.Name);
toolTip.Active = true;
}
else
toolTip.Active = false;
}
I hope this will help you.Please let me know if you have any further questions.
Thanks for your interest in Syncfusion Products.
Best Regards,
Meera.
CW
Chin Wye Jin
March 16, 2006 10:04 AM UTC
Thanks again for helping me out!!!
It works great!! :)