/// <summary>
 /// Initializes a new <see cref="PickAndPlace.StackControl"/>
 /// </summary>
 /// <param name="stackType">Stack type of the new control</param>
 public StackControl(StackType stackType, int number)
     : this()
 {
     myType            = stackType;
     lblStackType.Text = number.ToString() + ") " + PNPconverterTools.StackTypeToString(stackType);
 }