You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
527 B
24 lines
527 B
14 years ago
|
using System.ComponentModel;
|
||
|
using System.Drawing;
|
||
|
using System.Windows.Forms;
|
||
|
|
||
|
namespace ArducopterConfigurator
|
||
|
{
|
||
|
[Description("Vertical Progress Bar")]
|
||
|
[ToolboxBitmap(typeof(ProgressBar))]
|
||
|
public class VerticalProgressBar : ProgressBar
|
||
|
{
|
||
|
protected override CreateParams CreateParams
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
CreateParams cp = base.CreateParams;
|
||
|
cp.Style |= 0x04;
|
||
|
return cp;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|