18 lines
436 B
C#

using System;
using System.Text;
namespace DevComponents.DotNetBar.Rendering
{
/// <summary>
/// Represents painter for CheckBoxItem.
/// </summary>
internal class CheckBoxItemPainter
{
/// <summary>
/// Paints CheckBoxItem.
/// </summary>
/// <param name="e">Provides arguments for the operation.</param>
public virtual void Paint(CheckBoxItemRenderEventArgs e) { }
}
}