Ejemplo n.º 1
0
 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);
 }