Files @ 6b1dee8bd7ef
Branch filter:

Location: seniordesign-ui/Demo.WindowsForms/BSE.Windows.Forms/XPander/Constants.cs

mkanning@CL-ENS241-10.cedarville.edu
fixed some mapping bugs and found converter for GPS
using System;
using System.Collections.Generic;
using System.Text;

namespace BSE.Windows.Forms
{
	/// <summary>
	/// Contains the constants for the XPanderControls
	/// </summary>
    public static class Constants
	{
		/// <summary>
		/// The minimum height for the captionbars in the panels
		/// </summary>
		public const int CaptionMinHeight = 18;
        /// <summary>
        /// Gets the thickness, in pixels, of a flat-style control border.
        /// </summary>
        public const int BorderThickness = 1;
	}
}