Mono.Terminal.Dialog.Redraw C# (CSharp) Method

Redraw() public method

public Redraw ( ) : void
return void
        public override void Redraw()
        {
            Curses.attrset (ContainerColorNormal);
            Clear ();

            Widget.DrawFrame (x + 1, y + 1, w - 2, h - 2);
            Curses.move (y + 1, x + (w - Title.Length) / 2);
            Curses.addch (' ');
            Curses.attrset (Application.ColorDialogHotNormal);
            Curses.addstr (Title);
            Curses.addch (' ');
            RedrawChildren ();
        }