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
- CustomDrawEventArgs.cs (VB: CustomDrawEventArgs.vb)
- CustomRadioGroup.cs (VB: CustomRadioGroup.vb)
- CustomRadioGroupPainter.cs (VB: CustomRadioGroupPainter.vb)
- Main.cs (VB: Main.vb)
- Program.cs (VB: Program.vb)
- RepositoryItemCustomRadioGroup.cs (VB: RepositoryItemCustomRadioGroup.vb)
Documentation
Does this example address your development requirements/objectives?
(you will be redirected to DevExpress.com to submit your response)
Example Code
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;
}
}
}
}
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; }
}
}
}
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;
}
}
}
}
}
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;
}
}
}
}
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());
}
}
}
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();
}
}
}
}