public Button(ConsoleForms owner) : base(owner) { CTextCentered = true; CShowBorders = true; CBordersTextColor = ConsoleColor.Gray; CState = " "; }
public Control(ConsoleForms owner) { Owner = owner; Drawing = new Drawing(owner); Owner.OnMouseMove += Move; Owner.OnMouseUp += Up; Owner.OnMouseDown += Down; _Redraw(); }
public Drawing(ConsoleForms owner) { Owner = owner; }
public ScrollViewer(ConsoleForms owner) : base(owner) { CShowBorders = true; CText = ""; }