Redraw() 공개 메소드

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
리턴 void
예제 #1
0
 public override void Redraw()
 {
     base.Redraw();
     Widget.Redraw();
 }