Chris Chambers
Chris Chambers

Reputation: 185

Unidentified .net form control

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

Answers (4)

Edwin Groenendaal
Edwin Groenendaal

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.

http://www.google.co.uk/search?um=1&hl=en&safe=off&biw=1920&bih=1081&tbm=isch&sa=1&q=step+progress+bar&aq=f&aqi=&aql=&oq=

Examples:

Example 1 http://www.derby.gov.uk/NR/rdonlyres/C18B8524-8F86-4E54-BA32-3038245F8E90/0/progressBar_step1.jpg

And:

Example 2
(source: yimg.com)

And:

Example 3 http://www.gamedevelopersweb.com/wp-content/uploads/2011/03/ProgressBar_step2.jpg

Upvotes: 5

Mel
Mel

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

hawbsl
hawbsl

Reputation: 16003

Of the built in controls the ProgressBar enter image description here 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

Related Questions