Return to Snippet

Revision: 31163
at August 31, 2010 10:17 by jx_boi


Initial Code
using System;
using System.Windows.Forms;

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

Initial URL


Initial Description


Initial Title
Vertical Progress Bar

Initial Tags


Initial Language
C#