Beyond_Beyaan.BBStretchButton.ResizeButton C# (CSharp) 메소드

ResizeButton() 공개 메소드

public ResizeButton ( int width, int height ) : void
width int
height int
리턴 void
        public void ResizeButton(int width, int height)
        {
            this._width = width;
            this._height = height;
            _backgroundImage.Resize(width, height);
            _foregroundImage.Resize(width, height);
        }