ATMLCommonLibrary.controls.awb.AWBButton.AWBButton C# (CSharp) Method

AWBButton() public method

public AWBButton ( ) : System
return System
        public AWBButton()
        {
            // initiate button size and font
            base.Size = new Size(200, 40);
            base.Font = new Font("Verdana", 10, FontStyle.Bold);
            SetStyle(
                ControlStyles.AllPaintingInWmPaint |
                ControlStyles.ResizeRedraw |
                ControlStyles.DoubleBuffer |
                ControlStyles.Selectable |
                ControlStyles.UserMouse,
                true
                );
        }