Vertical Progress Bar


/ Published in: C#
Save to your folder(s)



Copy this code and paste it in your HTML
  1. using System;
  2. using System.Windows.Forms;
  3.  
  4. public class VerticalProgressBar:ProgressBar
  5. {
  6. protected override CreateParams CreateParams
  7. {
  8. get
  9. {
  10. CreateParams cp = base.CreateParams;
  11. cp.Style |= 0x04;
  12. return cp;
  13. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.