Files @ f2c2ba4ef3d4
Branch filter:

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

mkanning@CL-ENS241-10.cedarville.edu
Removed unneeded code and verified use of functions. project is essentially
complete except for some live testing and cache testing/experiments
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;
	}
}