3. Set ToolTips in the EventHandler method for the Labels and the Editors of the PropertyGrid:
void PropertyGrid1_FieldLoaded(object sender,
Telerik.Windows.Controls.Data.PropertyGrid.FieldEventArgs e)
{
//ToolTip for the Editors
ToolTip editorToolTip = new ToolTip();
editorToolTip.Content = "Your Editor Content";
ToolTipService.SetToolTip(e.Field.Content as FrameworkElement, editorToolTip)
//ToolTip for the Labels
ToolTip labelToolTip = new ToolTip();
labelToolTip.Content = "Your Label Content";
ToolTipService.SetToolTip(e.Field.Label as FrameworkElement, labelToolTip);
}
Let me know how this works for you.
Regards,
Stefan
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.