ToolTip in Windows Forms statusbaradvpanel (StatusBarAdvPanel)

29 Apr 20211 minute to read

ToolTip can be set for the StatusBarAdvPanel using the property given below.

Property Table

StatusBarAdvPanel Property Description
ToolTip Indicates the tooltip of the panel.The text to be displayed in the tooltip can be directly given in the property window.

This can be done through code as follows.

this.statusBarAdvPanel1.ToolTip = "Tooltip for StatusBarAdvPanel";
Me.statusBarAdvPanel1.ToolTip = "Tooltip for StatusBarAdvPanel"

Overview_img93