Nuaj.Cirrus.Utility.IntegerTrackbarControl.IntegerTrackbarControl C# (CSharp) Method

IntegerTrackbarControl() public method

public IntegerTrackbarControl ( ) : System
return System
        public IntegerTrackbarControl()
        {
            SetStyle( ControlStyles.Selectable, true );
            SetStyle( ControlStyles.DoubleBuffer, true );
            SetStyle( ControlStyles.AllPaintingInWmPaint, true );
            SetStyle( ControlStyles.UserPaint, true );
            SetStyle( ControlStyles.ResizeRedraw, true );

            InitializeComponent();

            textBox.Location = new System.Drawing.Point( 8, 3 );

            InitializeGraphics();
        }