Is there a way to hightlight(color, bolded text) a UltraExplorerBarItem when it is selected?
Thanks, Lars
Brian,
I think what I was looking for is:
Infragistics.Win.Appearance activeItemAppearance = new Infragistics.Win.Appearance();
activeItemAppearance.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
ultraExplorerBar1.ItemSettings.AppearancesSmall.ActiveAppearance = activeItemAppearance;
1984 said:Does the item support attaching a small image so the user can identify which one was last clicked? If not, what other control might help me with that?
1984 said:It would be most useful if he could look at the UltraExplorerBar (or an alternative control) to know for sure where he is.
Does the item support attaching a small image so the user can identify which one was last clicked? If not, what other control might help me with that?
There are 5 items in the first group in the UltraExplorerBar. When the user clicks one of those items, his attention goes elsewhere on the main window. It would be most useful if he could look at the UltraExplorerBar (or an alternative control) to know for sure where he is.
Items do not support selection; when the UltraExplorerBar.ItemSettings.Style property is set to 'StateButton' the checked item(s) exhibit the UltraExplorerBar.ItemSettings.AppearancesSmall.CheckedAppearance, so if you are using the state button style you can get the effect you describe here.