示例#1
0
 public void Draw(IDrawVisitor visitor)
 {
     visitor.DrawLabel(this);
 }
示例#2
0
 public void Draw(IDrawVisitor visitor)
 {
     visitor.DrawButton(this);
     visitor.DrawLabel(this.Label);
 }
示例#3
0
 public void Draw(IDrawVisitor visitor)
 {
     visitor.DrawButton(this.NonClickAbleButton);
     visitor.DrawLabel(this.NonClickAbleButton.Label);
     this.inputField.Draw(visitor);
 }