Reputation: 185
Can any of you identify the type of control I'm about to describe?
It's a sort of progress timeline with discrete labeled stages, often used during the installation of applications/operating systems. Usually a bar stretching across the full width at the bottom of the dialog, with the discrete steps marked as small bubbles along the bar.
I'd really like to use something like this for my own application but I don't want to create a custom control if one exists already. I'm struggling to Google it as I don't know what to call it!
Cheers,
Chris.
Upvotes: 0
Views: 133
Reputation: 2324
Check Google Images for 'step progress bar' and you will lots of examples.
There is no doubt a control available somewhere that does one of these for you. There are various kinds of step progress bars, as you can see.
Examples:
And:
(source: yimg.com)
And:
Example 3 http://www.gamedevelopersweb.com/wp-content/uploads/2011/03/ProgressBar_step2.jpg
Upvotes: 5
Reputation: 2385
I think you could acheive this effect by using a standard ProgressBar in "Blocks" mode, and then overlaying the bubble images on top of it. With the bubbles on top, you probably wouldn't even need the block mode part, though. Let's say you have five steps you want to track, each one would be 20%. Space your images evenly along the length of the ProgressBar, and just change the value in 20% increments. It should look like you want.
Upvotes: 0
Reputation: 16003
Of the built in controls the ProgressBar is the closest control to what you describe.
But if you want anything fancier than that you are going to have to roll your own or purchase a third party control.
Upvotes: 1
Reputation: 7672
The TrackBar?
trackbar? http://img710.imageshack.us/img710/3817/20110519224310.png
Upvotes: 0