Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vertical progress bar

VS 2005 SP3

I have worked with the progress bar many times.

However, I need to have one that is vertical. However, I can't find any property that will rotate it.

Is the progress bar always in a horizontal position and cannot be changed.

Many thanks,

like image 776
ant2009 Avatar asked Aug 17 '09 02:08

ant2009


People also ask

What is vertical progress?

Vertical Progressions act as a bridge between the anchor and grade-level standards, showing us how a given standard evolves over time and extends previous learning.

What are the different types of progress bars?

There are 2 types of progress bars: determinate and indeterminate. The former is used when the amount of information that needs to be loaded is detectable. The latter is used when the system is unsure how much needs to be loaded or how long it will take.

What is meant by progress bar?

A progress bar is a graphical control element used to visualize the progression of an extended computer operation, such as a download, file transfer, or installation. Sometimes, the graphic is accompanied by a textual representation of the progress in a percent format.


1 Answers

Try this:

 public class VerticalProgressBar : ProgressBar { 
   protected override CreateParams CreateParams { 
    get { 
      CreateParams cp = base.CreateParams; 
      cp.Style |= 0x04; 
      return cp; 
    } 
  } 
}

From: MSDN Forums

like image 152
chrissr Avatar answered Sep 21 '22 18:09

chrissr