-1

I'm not sure how to explain it, but I want the progress bar to act like the one on the Windows XP bootup screen. Is this possible? If so, how?

enter image description here

XantiuM
  • 132
  • 1
  • 16

1 Answers1

1

You didn't mention which display tech you are using, but the general concept is an "indeterminate" progress bar. Styling it to look exactly like Windows XP could be a bit of a challenge, but to get the basics start with a ProgressBar and:

In WinForms:

Set Style to Marquee (How to make an indeterminate progress bar in WinForms?)

In WPF, WinRT, or UWP:

Set IsIndeterminate to "True` (MSDN)

BradleyDotNET
  • 60,462
  • 10
  • 96
  • 117