using System;
namespace Gwen.Control
{
///
/// Clickable label (for checkboxes etc).
///
public class LabelClickable : Button
{
///
/// Initializes a new instance of the class.
///
/// Parent control.
public LabelClickable(Base parent)
: base(parent)
{
IsToggle = false;
Alignment = Pos.Left | Pos.CenterV;
}
///
/// Renders the control using specified skin.
///
/// Skin to use.
protected override void Render(Skin.Base skin)
{
// no button look
}
}
}