Subversion Repositories group.electronics

Rev

Rev 141 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 141 Rev 142
Line 11... Line 11...
11
	/// The LEDBulb is a .Net control for Windows Forms that emulates an
11
	/// The LEDBulb is a .Net control for Windows Forms that emulates an
12
	/// LED light with two states On and Off.  The purpose of the control is to 
12
	/// LED light with two states On and Off.  The purpose of the control is to 
13
	/// provide a sleek looking representation of an LED light that is sizable, 
13
	/// provide a sleek looking representation of an LED light that is sizable, 
14
	/// has a transparent background and can be set to different colors.  
14
	/// has a transparent background and can be set to different colors.  
15
	/// </summary>
15
	/// </summary>
16
	public partial class LedLight : Control {
16
	public partial class LedLight : UserControl {
17
 
17
 
18
		#region Public and Private Members
18
		#region Public and Private Members
19
 
19
 
20
		private Color _color;
20
		private Color _color;
21
		private bool _on = true;
21
		private bool _on = true;