System.Windows.Forms.ResizeButton.ResizeButton C# (CSharp) Method

ResizeButton() public method

public ResizeButton ( Form form, Bitmap img ) : System
form Form
img System.Drawing.Bitmap
return System
        public ResizeButton(Form form, Bitmap img)
        {
            owner = form;

            Anchor = AnchorStyles.BottomRight;
            Image = img;
            ImageColor = Color.White;
            ImageHoverColor = Color.FromArgb(0, 122, 204);
            Text = "";
            Height = img.Height;
            Width = img.Width;

            this.ClearColor(Color.Transparent);

            Owner.UpClick += Owner_UpClick;
        }