How can I help you?
Themes in Windows Forms statusbaradvpanel (StatusBarAdvPanel)
29 Apr 20211 minute to read
The StatusBarAdvPanel control can be provided with a themed look and feel using the properties given below.
Property Table
| StatusBarAdvPanel Property | Description |
|---|---|
| ThemesEnabled | Indicates if the background color will be set to 'Transparent'. Indicated Settings: BorderSides = Right, BorderStyle = Fixed3D, Border3DStyle = Etched. |
| IgnoreThemeBackground | Indicates whether the control will ignore the theme's background color and draw the back color instead. |
this.statusBarAdvPanel1.IgnoreThemeBackground = true;
this.statusBarAdvPanel1.ThemesEnabled = true;Me.statusBarAdvPanel1.IgnoreThemeBackground = True
Me.statusBarAdvPanel1.ThemesEnabled = True