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
680
How to set the image for the selected group of UltraExplorerBar.
posted

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

  • 71886
    Offline posted

    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.