/ Published in: C#
Expand |
Embed | Plain Text
using System; using System.Windows.Forms; public class VerticalProgressBar:ProgressBar { protected override CreateParams CreateParams { get { CreateParams cp = base.CreateParams; cp.Style |= 0x04; return cp; }
You need to login to post a comment.
