Category / Section
                                    
                                How to customize the XPTaskBarItem forecolor when mouse hovering in WinForms XPTaskBar?
                
                
                    1 min read
                
            
    Customize the XPTaskBarItem forecolor
User can customize the XPTaskBarItem forecolor when mouse hovering. It can be achieved by setting the HotTrackColor property. Please make use of the below code example.
C#
//XpTaskBarItem ForeColor when hovering xpTaskBarBox1.HotTrackColor = Color.Brown;
VB
'XpTaskBarItem ForeColor when hovering xpTaskBarBox1.HotTrackColor = Color.Brown
Screenshot

Samples:
C#: XPTaskBarExample
VB: XPTaskBarExample