/// <summary>
 /// Get the maximum bottom position of lowest control
 /// </summary>
 /// <param name="controls">control collection</param>
 /// <returns>lowest bottom</returns>
 private static int MaxBottom(ControlCollection controls)
 {
     return controls.Count > 0 ? controls.All().Max(c => c.Bottom) : 0;
 }