Hello team,
I am trying to update the Tooltip text of an UltraActivityIndicator at runtime. I am not find able to find a property to do the same.
Hello Baba Goud,
Thank you for contacting Infragistics. Since the UltraActivityIndicator doesn't expose a tooltip property you can use our UltraTooltipManager to achieve this. Please add one to your form, you can then set the ActivityIndicator's tooltipmanager settings' Tooltip property. As demonstrated below:
Let me know if you have any questions.
Thank you Michael. I am aware of setting the Tooltip at design time using UltraToolTipManager. Is there anyway to set this at runtime?
Yes,
You'll need to create a new instance of UltraTooltipInfo and use it's GetUltraTooltip method to pass in the activity indicator. Then off of the tooltipinfo instance set the TooltipText property.
// Get the ToolTipInfo for ActivtyIndicator UltraToolTipInfo toolTipInfo = this.ultraToolTipManager1.GetUltraToolTip(this.activityIndicator); ' Set the ToolTipText toolTipInfo.ToolTipText = "Enter some text here."
https://ko.infragistics.com/help/winforms/wintooltipmanager-set-up-wintooltipmanager-at-run-time
Thank you Michael. It worked like a charm.