We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Tooltips with PaletteGroupView.GroupViewPaletteItem

Hi, Is there any way i could set tooltips for each GroupViewPaletteItem in a PaletteGroupView? Any sample or infomation would be very very much helpful... Thanks in advance.. :)

2 Replies

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!! :)

Loader.
Live Chat Icon For mobile
Up arrow icon