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
603
Show activity in StatusBar
posted

I'd like to show in one of the statusbar panels that there's an activity going on. Do you have a sample on how I can accomplish it using a generic progress bar  (one that doesn't show the percentage) in the statusbar? I'm just interested in displaying an animation that tells the user that there's an ongoing process. There's also this marqueeinfo property which I thought may be a good alternative for the progress bar if the latter is not possible  but I can't  make it to work (a sample snippet of this feature's usage will be appreciated).

As a last resort I tried changing the text color and background color of the panel but I only succeeded in doing the former. Is there any reason why UltraStatusBar1.Panels(0).Appearance.BackColor = Color.Yellow doesn't work?

 

Parents
No Data
Reply
  • 469350
    Offline posted

    Hi,

    You could use a ControlContainer panel and put an UltraActivityIndicator control in it.

    y2kdis said:
    As a last resort I tried changing the text color and background color of the panel but I only succeeded in doing the former. Is there any reason why UltraStatusBar1.Panels(0).Appearance.BackColor = Color.Yellow doesn't work?

    My guess is that the panel is using themes by default, which will override the BackColor. Try setting Appearance.ThemedElementAlpha to Transparent in addition to the BackColor.

Children
No Data