Redraw() public method

public Redraw ( ) : void
return void
Ejemplo n.º 1
0
 public override void Redraw()
 {
     Drawing = true;
     base.Redraw();
     Container.Redraw();
     Drawing = false;
 }
Ejemplo n.º 2
0
 static void Redraw(Container container)
 {
     container.Redraw ();
     Curses.refresh ();
 }