16 lines
388 B
C#
16 lines
388 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace DevComponents.DotNetBar.Rendering
|
|
{
|
|
internal class SwitchButtonPainter
|
|
{
|
|
/// <summary>
|
|
/// Paints SwitchButton.
|
|
/// </summary>
|
|
/// <param name="e">Provides arguments for the operation.</param>
|
|
public virtual void Paint(SwitchButtonRenderEventArgs e) { }
|
|
}
|
|
}
|