Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
110
HotTrackSelected
posted

Hi,

in the appstylist I found the "HotTrackSelected" state that changed my forcolor to the one that I wanted.

To overwrite the forecolor for each tab page I changed the resulutionOrder to: ControlThenApplication


How can I programatically found that "HotTrackSelected" ?

I see and can change all other states for example:

ultraTabControl1.ActiveTab.ActiveAppearance.ForeColor = Color.FromArgb(0,146,208);

That Change only the forcolor, if I move the mouse away from the selected tab.

I try things like that:

ultraTabControl1.HotTrackedTab.Appearance.ForeColor = Color.FromArgb(0, 146, 208);

ultraTabControl1.Tabs[0].HotTrackAppearance.ForeColor = Color.FromArgb(0, 146, 208)

but I need something that not exists:

ultraTabControl1.HotTrackedSelectedTab.Appearance.ForeColor = Color.FromArgb(0, 146, 208);

ultraTabControl1.Tabs[0].HotTrackSelectedAppearance.ForeColor = Color.FromArgb(0, 146, 208)


Any ideas?


Cheers

Ralf