Exemplo n.º 1
0
 public Button(ConsoleForms owner) : base(owner)
 {
     CTextCentered     = true;
     CShowBorders      = true;
     CBordersTextColor = ConsoleColor.Gray;
     CState            = " ";
 }
Exemplo n.º 2
0
        public Control(ConsoleForms owner)
        {
            Owner   = owner;
            Drawing = new Drawing(owner);

            Owner.OnMouseMove += Move;
            Owner.OnMouseUp   += Up;
            Owner.OnMouseDown += Down;

            _Redraw();
        }
Exemplo n.º 3
0
 public Drawing(ConsoleForms owner)
 {
     Owner = owner;
 }
Exemplo n.º 4
0
 public ScrollViewer(ConsoleForms owner) : base(owner)
 {
     CShowBorders = true;
     CText        = "";
 }