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