Click here to Skip to main content
15,884,836 members
Articles / Multimedia / GDI+
Article

A Fine-looking Segmented LED Control

Rate me:
Please Sign up or sign in to vote.
4.80/5 (80 votes)
12 May 2008CPOL4 min read 162.4K   10.2K   232   41
This article describes an approach to constructing a segmented LED displayer
Screenshot - screen_shot.png

Introduction

This article describes an approach to constructing a cool segmented LED displayer that is similar to the LEDs used in alarm clocks and industry monitors. This control can be used to display time, numerical values and even some English characters. I hope it will be helpful in programs such as hardware simulators.

Background

In this section, I would like to give a brief introduction to the ideas behind this control. In a 7-segment LED displayer, one character is composed of at most 7 segments, as in the picture shown below.

Figure 1 - 7 segments

Figure 1: Segmented character

Each segment has the following properties: the width of the segment, the bevel rate of the corners in the segment and the interval between segments.

Figure 2 - 1 segment

Figure 2: Properties of each segment

If we mark those 7 segments with numbers, as the picture shows in Figure 1, then we can use indices to represent different characters. For example, the character "1" can be represented as (2, 3) and the character "5" can be represented as (1, 6, 7, 3, 4). To draw the whole scene, we should first calculate the bound rectangles where a certain character is drawn. Then the segments in each specified bound rectangle should be drawn. The algorithm for drawing a 7-segmented LED character in a specified bound rectangle is shown in Figure 3.

Figure 3 - Algorithm

Figure 3: Drawing one character

Using the code

This control is quite easy to use. Just drag it from the toolbox to your form in design mode. Then adjust its provided properties in the designer or at runtime to modify its appearance. The properties are listed in the table below:

BorderWidthintGet or set the width of the border around the control.
BorderColorSystem.ColorGet or set the color of the border around the control.
HighlightOpaquebyteGet or set the opaque value of the highlight. 0 implies that the highlight will end transparent, while 100 implies that the highlight will keep its transparency from the beginning.
ShowHighlightboolGet or set a value indicating whether to show the highlight area on the control. If it is set to false, the value of the HighlightOpaque property is ignored.
CornerRadiusintGet or set the corner radius for the control. If RoundCorner equals false, the value of this property is ignored. The valid value is from 1 to 10.
GradientBackgroundboolGet or set a value indicating whether the background was filled in gradient colors.
BackColor_1System.ColorGet or set the first background color. If GradientBackground equals true, this color will be the color at the top of the background rectangle. Otherwise, this color will be the solid background color.
BackColor_2System.ColorGet or set the second background color. If GradientBackground equals true, this color will be the color at the bottom of the background rectangle. Otherwise, this color will be ignored.
RoundCornerboolGet or set the border style. If it is true, the border of the control will be a round rectangle. Otherwise, the border is a normal rectangle.
SegmentIntervalRatiointGet or set the segment-interval ratio. The larger this value is, the wider the gaps between segments are.
TextAlignmentAlignmentGet or s<code>et the alignment style of the text.
SegmentWidthRatiointGet or set the segment-width ratio. The larger this value is, the wider the segments are.
TotalCharCountintGet or set the total number of characters to display. If the number of characters contained in the displaying text is larger than this value, the displaying character will be truncated.
BevelRatefloatGet or set the bevel rate of each segment. Please refer to Figure 2 for further information.
FadedColorSystem.ColorGet or set the color of faded background characters.
TextstringGet or set the text of the control.

Points of Interest

A control at presentation level may do lots of painting. Most of the time, the control has to be repainted when one of its properties is changed. This may cause multiple invalidating if several properties of the control are changed in quick succession. In order to avoid multiple painting, we can implement the ISupportInitialize interface in our control. First, we set a member variable in the BeginInit() method.

C#
private bool m_bIsInitializing = false;
void ISupportInitialize.BeginInit()
{
    m_bIsInitializing = true;
}

Then we rewrite our properties in the following manner:

C#
public Color FadedColor
{
    get
    {
        return m_colFadedColor;
    }
    set
    {
        if (m_colFadedColor == value)
        return;
        m_colFadedColor = value;
        // check if the control is in initializing mode
        if (!m_bIsInitializing)
        {
            Invalidate();
        }
    }
}

At last, in the EndInit() method, we turn off the initialization mode and repaint the control.

C#
void ISupportInitialize.EndInit()
{
    m_bIsInitializing = false;
    Invalidate();
}

Now we can use batch initialization to prevent successive painting of the control.

C#
((System.ComponentModel.ISupportInitialize)mycontrol).BeginInit();
mycontrol.BackColor = System.Drawing.Color.Transparent;
mycontrol.BackColor_1 = System.Drawing.Color.Black;
mycontrol.BackColor_2 = System.Drawing.Color.Transparent;
mycontrol.BevelRate = 0.5F;
mycontrol.BorderColor = System.Drawing.Color.White;
mycontrol.FadedColor = System.Drawing.Color.Black;
((System.ComponentModel.ISupportInitialize)mycontrol).EndInit();

History

  • 15th July, 2007 -- Original version posted
  • 20th July, 2007 -- Downloads updated
  • 7th May, 2008 -- Downloads updated
    1. User can now turn on smooth drawing mode to make the control look better
    2. Italic text style supported
    3. Bug fixed: The bottom and right bounds are invisible if the bound rectangle is a regular one
  • 12th May, 2008 -- Downloads updated
    1. The user can copy text on the control when the control got focus.
    2. The color of border will change (Defined by user) when the control got and lost focus.
    3. Bug fixed: the anti-alias effect will disappear when the bound is a regulare rect.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
China China
A guy who is a software developer now and hopes to become a Chief Software Architect in the future Smile | :) . Now study in Beijing University of Aeronautics & Astronautics for the master's degree.

Comments and Discussions

 
GeneralRe: BUG in setter of Text Pin
Liu Xia7-Sep-07 18:01
Liu Xia7-Sep-07 18:01 
Generalawesome Pin
Antom1-Sep-07 13:50
Antom1-Sep-07 13:50 
GeneralVery Nice Pin
SpiveyC#23-Aug-07 4:59
SpiveyC#23-Aug-07 4:59 
GeneralDefine char with table Pin
NicolaBitonto26-Jul-07 17:59
NicolaBitonto26-Jul-07 17:59 
GeneralRe: Define char with table Pin
YouMiss27-Nov-07 14:52
YouMiss27-Nov-07 14:52 
GeneralRe: Define char with table Pin
jinfd12-May-08 7:55
jinfd12-May-08 7:55 
GeneralLED Control Pin
moegoe24-Jul-07 2:17
moegoe24-Jul-07 2:17 
GeneralRe: LED Control Pin
Liu Xia27-Jul-07 1:08
Liu Xia27-Jul-07 1:08 
Sorry for the late reply!
Well, it is strange~~ and I can't reproduce your problem. However, you can download the source code and re-compile the project to see if it can be used.Smile | :)
GeneralGood work...! Pin
Chamadness24-Jul-07 0:35
Chamadness24-Jul-07 0:35 
GeneralGood work! Pin
Khazbak23-Jul-07 21:09
Khazbak23-Jul-07 21:09 
GeneralReduce computation Pin
Horia Tudosie23-Jul-07 14:45
Horia Tudosie23-Jul-07 14:45 
GeneralRe: Reduce computation Pin
Liu Xia27-Jul-07 0:59
Liu Xia27-Jul-07 0:59 
GeneralUpdated version Pin
Liu Xia19-Jul-07 17:56
Liu Xia19-Jul-07 17:56 
GeneralVery Slick Pin
Paul Conrad17-Jul-07 19:20
professionalPaul Conrad17-Jul-07 19:20 
GeneralRe: Very Slick Pin
Liu Xia17-Jul-07 23:07
Liu Xia17-Jul-07 23:07 
GeneralOptimisation Technique Pin
Ed.Poore17-Jul-07 10:47
Ed.Poore17-Jul-07 10:47 
GeneralRe: Optimisation Technique [modified] Pin
Liu Xia17-Jul-07 15:59
Liu Xia17-Jul-07 15:59 
GeneralRe: Optimisation Technique Pin
sermit24-Dec-07 22:00
sermit24-Dec-07 22:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.