开发者

Multi-segment winforms progress bar?

开发者 https://www.devze.com 2023-01-10 09:25 出处:网络
I\'m wondering it this is a really bad usability idea, so I\'m open to feedback. I need to perform two steps on a large number of items, with step 2 starting any time after step 1 has completed. Howe

I'm wondering it this is a really bad usability idea, so I'm open to feedback.

I need to perform two steps on a large number of items, with step 2 starting any time after step 1 has completed. However, Step 1 for Item 2 can begin any time after Step 1/Item 1 has finished, and even while step 2/Item 1 is going on.

Is a multi-segment progress bar a bad idea for the consumer? For example (what I'm picturing), the following form would display that step 1 has been done on 75% of items, but step 2 has only been performed on 50% (I intended the brown to be blue or s开发者_Python百科omething nicer, but couldn't get it right in my photo editor).

Multi-segment winforms progress bar?

(source: trycatchfinally.net)

The way I was considering doing it before was this, but I don't know if that's more of less clear to the end user, since the activity timeframe of the bars is overlapping:

Multi-segment winforms progress bar?

(source: trycatchfinally.net)

Any feedback on which makes more sense to the user? If the first image is better, is there a control out there that does this?


Does the user actually care when step 1 completes? If step 2 always comes after step 1, can you not just display the progress bar for step 2 and not worry about displaying the progress of step 1 at all? The work is only "complete" when step 2 finishes anyway...

Alternatively, you could combine the progress bar into one. Just double the total number of "items" to process and increment the progress bar once when step one completes and once more when step 2 completes.

Unless I misunderstood something...


You have two operations going on in parallel, then? Option (2) sounds the simplest to implement, although a little confusing for the user (exactly how close is it to finishing?).

I guess that performing step 1 decides what work there is to do on step 2. You could display a single progress readout, from 0 to 100%, that reflects the total of steps 1 and 2: however, when you start adding the work for step 2, you could see the progress go backwards.

I would first try to determine all the work that has to be done -- that is, all the work involved in step 1 and step 2 -- and use that to calibrate a single progress bar accurately. Then, display a single progress readout that starts on the first item of step 1, and finishes on the last item of step 2.


I like option 2. I see some installer programs like that, so it's not unheard of...

And the visual is always nice.

Edit - added

Just for fun, I found this paper on the progress bar and user perception....

http://www.chrisharrison.net/projects/progressbars/ProgBarHarrison.pdf

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号