RadNavigationView colors
Given the screen capture below, I'm trying to set the colors and I must be misunderstanding something.
First, I don't need ForeColor of the menu text to change to blue once I've clicked on it.
When I click on an item (i.e. select it and make it current) it should be BackColor of Blue and ForeColor of White. I thought this would do it .but the ForeColor goes blue.
radNavigationView1.NavigationViewElement.SelectedItem.BackColor = Color.Blue;
radNavigationView1.NavigationViewElement.SelectedItem.ForeColor = Color.White;
Then , when I hover the mouse pointer over a menu item (as I'm doing with Electronic Payments & Finding) it should be BackColor of Greay and ForeColor of Black. I'm trying to set it in SelectedPageChanging.
What am I doing wrong?
Carl