Click here to Skip to main content
15,885,757 members
Articles / Programming Languages / C#

RadioListBox: A ListBox with Radio Buttons (Winforms version)

Rate me:
Please Sign up or sign in to vote.
4.83/5 (42 votes)
3 Sep 2008CPOL2 min read 263.8K   8.2K   111   42
How to implement an owner-drawn ListBox with radio buttons instead of standard selection highlight
Screenshot - Screenshot_1.jpg

Screenshot - Screenshot_2.jpg

Introduction

This is the .NET version of my previous MFC article, CRadioListBox: A ListBox with Radio Buttons. A couple of years ago, I discussed in a Visual C++ forum about a member's request to implement a custom ListBox control similar to MFC's CCheckListBox, but with radio buttons. Initially it appeared to be trivial, since the ListBox control's unique selection version complies with the requirements, but I have concluded that this control has some advantages:

  • It is clearer that options are mutually exclusive with radio buttons.
  • It is a good alternative to a group of radio buttons because you have to maintain just one control, less memory use.
  • It inherits some useful features like scrolling, sorting, data binding and multi-column.
  • It will be easier to change options dynamically, as shown in the demo application.
  • It will be easier to manage selection events, also shown in the demo application.

Using the Code

To implement RadioListBox into your project, you just need to do a few steps:

  • Include RadioListBox.cs into your project.
  • Drop a RadioListBox object into your form.
  • Change the standard properties of the control, just like a ListBox.
  • Countersense to standard ListBox, transparent BackColor property is allowed.

That's all! Now you can use the radio button collection as a regular ListBox. You can add items with the Items.Add() method and query for user selection with the SelectedIndex property.

Fake Transparency

Some .NET controls accept a transparent color as a BackColor property, but ListBox is not one of them. So, transparency requires lots of non-managed tricks. However, transparency is a key feature needed for this control to be useful. It allows the control to acquire a real radio button look and feel, as you can see in the screenshot above. I decided to stay in the managed world by providing fake transparency to the control by overriding the BackColor property to accept it, and saving its own background color brush. When setting the background color to transparent, the control will mimic the parent form or control, even if the form has a non-standard background color.

RadioListBox Internals

The RadioListBox class is derived from Windows Forms' ListBox class with the owner-draw feature. The resumed class definition is the following:

C#
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms.VisualStyles;

namespace System.Windows.Forms
{
    public class RadioListBox : ListBox
    {
        private StringFormat Align;
        private bool IsTransparent = false;  // Handles the transparent state
        private Brush BackBrush;  // Manages its own background brush

        // Allows the BackColor to be transparent
        public override Color BackColor ...

        // Hides these properties in the designer
        [Browsable(false)]
        public override DrawMode DrawMode ...

        [Browsable(false)]
        public override SelectionMode SelectionMode ...

        // Public constructor
        public RadioListBox() ...

        // Main painting method
        protected override void OnDrawItem(DrawItemEventArgs e) ...

        // Prevent background erasing
        protected override void DefWndProc(ref Message m) ...

        // Other event handlers
        protected override void OnHandleCreated(EventArgs e) ...
        protected override void OnFontChanged(EventArgs e) ...
        protected override void OnParentChanged(EventArgs e) ...
        protected override void OnParentBackColorChanged(EventArgs e) ...
    }
}

The core enhancement is at the OnDrawItem() method. The method does not highlight the selected item as in a standard ListBox control, but draws a radio button instead. It also manages the focus state to draw the focus rectangle properly and the background color according to the transparency attribute. Here is the C# source code:

C#
// Main painting method
protected override void OnDrawItem(DrawItemEventArgs e)
{
    int maxItem = this.Items.Count - 1;

    if (e.Index < 0 || e.Index > maxItem)
    {
        // Erase all background if control has no items
        e.Graphics.FillRectangle(BackBrush, this.ClientRectangle);
        return;
    }

    int size = e.Font.Height; // button size depends on font height, not on item height

    // Calculate bounds for background, if last item paint up to bottom of control
    Rectangle backRect = e.Bounds;
    if (e.Index == maxItem)
        backRect.Height = this.ClientRectangle.Top + 
        this.ClientRectangle.Height - e.Bounds.Top;
    e.Graphics.FillRectangle(BackBrush, backRect);

    // Determines text color/brush
    Brush textBrush;
    bool isChecked = (e.State & DrawItemState.Selected) == DrawItemState.Selected;

    RadioButtonState state = isChecked ? 
        RadioButtonState.CheckedNormal : RadioButtonState.UncheckedNormal;
    if ((e.State & DrawItemState.Disabled) == DrawItemState.Disabled)
    {
        textBrush = SystemBrushes.GrayText;
        state = isChecked ? RadioButtonState.CheckedDisabled : 
                RadioButtonState.UncheckedDisabled;
    }
    else if ((e.State & DrawItemState.Grayed) == DrawItemState.Grayed)
    {
        textBrush = SystemBrushes.GrayText;
        state = isChecked ? RadioButtonState.CheckedDisabled : 
                RadioButtonState.UncheckedDisabled;
    }
    else
    {
        textBrush = SystemBrushes.FromSystemColor(this.ForeColor);
    }

    // Determines bounds for text and radio button
    Size glyphSize = RadioButtonRenderer.GetGlyphSize(e.Graphics, state);
    Point glyphLocation = e.Bounds.Location;
    glyphLocation.Y += (e.Bounds.Height - glyphSize.Height) / 2;

    Rectangle bounds = new Rectangle(e.Bounds.X + glyphSize.Width, e.Bounds.Y, 
        e.Bounds.Width - glyphSize.Width, e.Bounds.Height);

    // Draws the radio button
    RadioButtonRenderer.DrawRadioButton(e.Graphics, glyphLocation, state);

    // Draws the text
    // Bound Datatable? Then show the column written in Displaymember   
    if (!string.IsNullOrEmpty(DisplayMember)) 

        e.Graphics.DrawString(((System.Data.DataRowView)this.Items[e.Index])
            [this.DisplayMember].ToString(),
        e.Font, textBrush, bounds, this.Align);
    else
        e.Graphics.DrawString(this.Items[e.Index].ToString(), 
            e.Font, textBrush, bounds, this.Align);

    // If the ListBox has focus, draw a focus rectangle around the selected item.
    e.DrawFocusRectangle();
}

History

  • 23rd April, 2007: First version
  • 14th September, 2007: Refinements in control rendering (thanks to stephpms); support for bounded data (thanks to PeterDP)
  • 1st September, 2008: Improved background painting; support for large fonts (thanks to rkousha)

License

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


Written By
Architect
Peru Peru


Computer Electronics professional, Software Architect and senior Windows C++ and C# developer with experience in many other programming languages, platforms and application areas including communications, simulation systems, PACS/DICOM (radiology), GIS, 3D graphics and HTML5-based web applications.
Currently intensively working with Visual Studio and TFS.

Comments and Discussions

 
GeneralRe: plz help!!! Pin
Ri Qen-Sin13-Nov-07 7:48
Ri Qen-Sin13-Nov-07 7:48 
Generalthanks Pin
k_hammami200530-Sep-07 22:16
k_hammami200530-Sep-07 22:16 
GeneralProblem with radio control Font change Pin
rkousha23-Sep-07 0:27
rkousha23-Sep-07 0:27 
AnswerRe: Problem with radio control Font change Pin
Jaime Olivares1-Oct-07 8:22
Jaime Olivares1-Oct-07 8:22 
GeneralThanks Pin
shri_khamitkar9-Jul-07 20:50
shri_khamitkar9-Jul-07 20:50 
GeneralDisplaying the displaymember Pin
PeterDP3-Jul-07 6:26
PeterDP3-Jul-07 6:26 
GeneralRe: Displaying the displaymember Pin
PeterDP3-Jul-07 22:06
PeterDP3-Jul-07 22:06 
GeneralUse new radioButton style... Pin
Kakone25-Jun-07 22:53
Kakone25-Jun-07 22:53 
As you use ControlPaint.DrawRadioButton to draw the radio button, the radioButtons doesn't have the good style on WindowsXP or Vista.
You can use the RadioButtonRenderer class, and your radio buttons will be nice. The two static methods GetGlyphSize and DrawRadioButton of the RadioButtonRenderer class will be useful for your RadioListBox class.
GeneralThe Look Pin
Lord of Scripts1-Jun-07 7:07
Lord of Scripts1-Jun-07 7:07 
AnswerRe: The Look Pin
Jaime Olivares10-Jun-07 16:16
Jaime Olivares10-Jun-07 16:16 
GeneralRe: The Look Pin
Lord of Scripts10-Jun-07 22:53
Lord of Scripts10-Jun-07 22:53 
GeneralTrouble with implementing Pin
Oldek26-May-07 5:17
Oldek26-May-07 5:17 
GeneralClass not public Pin
Rudolf Jan5-May-07 4:02
Rudolf Jan5-May-07 4:02 
GeneralRe: Class not public Pin
Jaime Olivares5-May-07 17:19
Jaime Olivares5-May-07 17:19 
QuestionHow can I make this list a MultiColumnList??? Pin
hamidhussain1-May-07 21:38
hamidhussain1-May-07 21:38 
AnswerRe: How can I make this list a MultiColumnList??? Pin
Jaime Olivares2-May-07 7:20
Jaime Olivares2-May-07 7:20 
AnswerRe: How can I make this list a MultiColumnList??? Pin
Jaime Olivares5-May-07 17:12
Jaime Olivares5-May-07 17:12 
AnswerRe: How can I make this list a MultiColumnList??? Pin
lehoangtrung10-May-07 3:10
lehoangtrung10-May-07 3:10 
AnswerRe: How can I make this list a MultiColumnList??? Pin
Jaime Olivares14-May-07 8:58
Jaime Olivares14-May-07 8:58 
GeneralRe: How can I make this list a MultiColumnList??? Pin
sk28027-Apr-10 19:47
sk28027-Apr-10 19:47 
QuestionThis is the .net version of my previous MFC article?? Pin
Nirosh23-Apr-07 22:42
professionalNirosh23-Apr-07 22:42 
AnswerRe: This is the .net version of my previous MFC article?? Pin
Jaime Olivares24-Apr-07 11:53
Jaime Olivares24-Apr-07 11:53 

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.