I made the following code to implement this:
e.SelectedTabChanged += (obj, ev) =>
{
foreach
(RadTabbedFormControlTab tab
in
e.Tabs)
{
tab.Item.BackColor = Color.FromArgb(0, 255, 255, 255);
tab.Item.BorderColor = Color.FromArgb(0, 255, 255, 255);
tab.Item.ShadowColor = Color.FromArgb(0, 255, 255, 255);
}
e.SelectedTab.Item.BackColor = Color.White;
e.SelectedTab.Item.BorderColor = Color.White;
e.SelectedTab.Item.ShadowColor = Color.White;
};
It is right? Or is there another way to change the colors of the tabs when they become active?