Hi,
For the coltrol UltraExplorerBar, is it possible to set the image for the selected/current group (at the top of the UltraExplorerBar)?
Thanks a lot
Felix
Hello Felix,
You could use the following code in order to achieve the desired behavior:
foreach(UltraExplorerBarGroup group in ultraExplorerBar1.Groups) group.Settings.AppearancesSmall.ActiveHeaderAppearance.Image = SystemIcons.Asterisk.ToBitmap(); ultraExplorerBar1.GroupSettings.Style = Infragistics.Win.UltraWinExplorerBar.GroupStyle.SmallImagesWithText;
Please feel free to let me know if I misunderstood you or if you have any other questions.