Ejemplo n.º 1
0
 public abstract TextBox draw(TextBox textBox, Decorator.IShip ship);
Ejemplo n.º 2
0
 public override TextBox draw(TextBox textBox, Decorator.IShip ship)
 {
     textBox.Text      = ship.getSkin();
     textBox.ForeColor = Color.Blue;
     return(textBox);
 }