public Button(int x, int y, int width, int height, string buttonText) : base(x, y, width, height) { notActiveFrame = new Frame(x, y, width, height, '+'); activeFrame = new Frame(x, y, width, height, '#'); textLine = new TextLine(x + 1, y + 1 + ((height - 2) / 2), width - 2, buttonText); }