Redraw() public method

Redraws the current widget, must be overwritten.

This method should be overwritten by classes that derive from Widget. The default implementation of this method just fills out the region with the character 'x'.

Widgets are responsible for painting the entire region that they have been allocated.

public Redraw ( ) : void
return void
Example #1
0
 public override void Redraw()
 {
     base.Redraw();
     Widget.Redraw();
 }