Example E3371
Visible to All Users

WinForms Radio Group - Custom draw radio items

This example creates a custom radio group control that allows you to manually paint radio items:

C#
void OnCustomDrawItem(object sender, CustomDrawEventArgs e) { if (e.ItemInfo.CheckState == CheckState.Checked) { e.ItemInfo.Appearance.Font = new Font(e.ItemInfo.Appearance.Font, FontStyle.Bold | FontStyle.Underline); } if (e.ItemInfo.State == DevExpress.Utils.Drawing.ObjectState.Hot) { LinearGradientBrush brush = new LinearGradientBrush(e.ItemInfo.Bounds, Color.LightBlue, Color.Cyan, LinearGradientMode.ForwardDiagonal); e.Cache.FillRectangle(brush, e.ItemInfo.Bounds); e.CheckPainter.DrawObject(e.ItemInfo); e.Handled = true; } }

Note

You can also use the following pre-designed and ready-to-use group controls shipped as part of DevExpress WinForms UI Templates:

- Chip Group
- Multi-Select Chip Group
- Radio Button Group
- Toggle Button Group

DevExpress WinForms UI Templates include predesigned and ready-to-use UI components and forms (C# and Visual Studio 2022 only).

Files to Review

Documentation

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)

Example Code

WindowsApplication3/CustomDrawEventArgs.cs(vb)
C#
using System; using System.Collections.Generic; using System.Windows.Forms; using DevExpress.Skins; using DevExpress.Utils.Drawing; using DevExpress.Utils; using System.Drawing; using DevExpress.XtraBars; using DevExpress.XtraEditors.ViewInfo; namespace WindowsApplication3 { public delegate void CustomDrawEventHandler(object sender, CustomDrawEventArgs e); public class CustomDrawEventArgs : EventArgs { GraphicsCache cache; RadioGroupItemViewInfo itemInfo; CheckObjectPainter checkPainter; bool handled; public CustomDrawEventArgs(GraphicsCache cache, RadioGroupItemViewInfo itemInfo, CheckObjectPainter checkPainter, bool handled) { this.cache = cache; this.itemInfo = itemInfo; this.checkPainter = checkPainter; this.handled = handled; } public GraphicsCache Cache { get { return cache; } } public RadioGroupItemViewInfo ItemInfo { get { return itemInfo; } } public CheckObjectPainter CheckPainter { get { return checkPainter; } } public bool Handled { get { return handled; } set { if (handled != value) handled = value; } } } }
WindowsApplication3/CustomRadioGroup.cs(vb)
C#
using System; using System.Collections.Generic; using System.Windows.Forms; using DevExpress.Skins; using DevExpress.XtraEditors; using System.ComponentModel; namespace WindowsApplication3 { public class CustomRadioGroup : RadioGroup { static CustomRadioGroup() { RepositoryItemCustomRadioGroup.RegisterCustomEdit(); } public CustomRadioGroup() { } public override string EditorTypeName { get { return RepositoryItemCustomRadioGroup.CustomEditName; } } [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public new RepositoryItemCustomRadioGroup Properties { get { return base.Properties as RepositoryItemCustomRadioGroup; } } } }
WindowsApplication3/CustomRadioGroupPainter.cs(vb)
C#
using System; using System.Collections.Generic; using System.Text; using DevExpress.XtraEditors.Registrator; using DevExpress.XtraEditors.Repository; using System.Drawing; using System.Reflection; using DevExpress.XtraEditors.ViewInfo; using DevExpress.XtraEditors.Drawing; using DevExpress.XtraEditors; using System.ComponentModel; using System.Windows.Forms; using WindowsApplication3; namespace DXSample { public class CustomRadioGroupPainter : RadioGroupPainter { public CustomRadioGroupPainter() : base() { } protected override void DrawRadioGroupItems(ControlGraphicsInfoArgs info) { RadioGroupViewInfo vi = info.ViewInfo as RadioGroupViewInfo; foreach (RadioGroupItemViewInfo itemInfo in vi.ItemsInfo) { itemInfo.Cache = info.Cache; try { CustomDrawEventArgs e = new CustomDrawEventArgs(info.Cache, itemInfo, vi.RadioPainter, false); RepositoryItemCustomRadioGroup item = vi.Item as RepositoryItemCustomRadioGroup; item.RaiseCustomDrawItem(e); if (!e.Handled) vi.RadioPainter.DrawObject(itemInfo); if (itemInfo.Focused) ControlPaint.DrawFocusRectangle(info.Graphics, vi.GetFocusRect(itemInfo)); } finally { itemInfo.Cache = null; } } } } }
WindowsApplication3/Main.cs(vb)
C#
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using DevExpress.XtraEditors; using System.Drawing.Drawing2D; namespace WindowsApplication3 { public partial class Main: XtraForm { public Main() { InitializeComponent(); } private void OnCustomDrawItem(object sender, CustomDrawEventArgs e) { if (e.ItemInfo.CheckState == CheckState.Checked) { e.ItemInfo.Appearance.Font = new Font(e.ItemInfo.Appearance.Font, FontStyle.Bold | FontStyle.Underline); } if (e.ItemInfo.State == DevExpress.Utils.Drawing.ObjectState.Hot) { LinearGradientBrush brush = new LinearGradientBrush(e.ItemInfo.Bounds, Color.LightBlue, Color.Indigo, LinearGradientMode.ForwardDiagonal); e.Cache.FillRectangle(brush, e.ItemInfo.Bounds); e.CheckPainter.DrawObject(e.ItemInfo); e.Handled = true; } } } }
WindowsApplication3/Program.cs(vb)
C#
using System; using System.Collections.Generic; using System.Windows.Forms; using DevExpress.Skins; namespace WindowsApplication3 { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { SkinManager.EnableFormSkins(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Main()); } } }
WindowsApplication3/RepositoryItemCustomRadioGroup.cs(vb)
C#
using System; using System.Collections.Generic; using System.Windows.Forms; using DevExpress.Skins; using DevExpress.XtraEditors.Registrator; using DevExpress.XtraEditors.Repository; using System.Reflection; using System.Drawing; using DevExpress.XtraEditors.ViewInfo; using DXSample; namespace WindowsApplication3 { [UserRepositoryItem("RegisterCustomEdit")] public class RepositoryItemCustomRadioGroup : RepositoryItemRadioGroup { static RepositoryItemCustomRadioGroup() { RegisterCustomEdit(); } public RepositoryItemCustomRadioGroup() { } public const string CustomEditName = "CustomRadioGroup"; public override string EditorTypeName { get { return CustomEditName; } } public static void RegisterCustomEdit() { Image img = null; try { img = (Bitmap)Bitmap.FromStream(Assembly.GetExecutingAssembly(). GetManifestResourceStream("DevExpress.CustomEditors.CustomEdit.bmp")); } catch { } EditorRegistrationInfo.Default.Editors.Add(new EditorClassInfo(CustomEditName, typeof(CustomRadioGroup), typeof(RepositoryItemCustomRadioGroup), typeof(RadioGroupViewInfo), new CustomRadioGroupPainter(), true, img)); } static readonly object customDraw = new object(); public event CustomDrawEventHandler CustomDrawItem { add { this.Events.AddHandler(customDraw, value); } remove { this.Events.RemoveHandler(customDraw, value); } } internal void RaiseCustomDrawItem(CustomDrawEventArgs e) { CustomDrawEventHandler handler = (CustomDrawEventHandler)Events[customDraw]; if (handler != null) handler(GetEventSender(), e); } public override void Assign(RepositoryItem item) { BeginUpdate(); try { base.Assign(item); RepositoryItemCustomRadioGroup source = item as RepositoryItemCustomRadioGroup; if (source == null) return; Events.AddHandler(customDraw, source.Events[customDraw]); } finally { EndUpdate(); } } } }

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.