using System; using Gwen.Control; namespace Gwen.ControlInternal { /// /// Numeric up arrow. /// public class UpDownButton_Up : Button { /// /// Initializes a new instance of the class. /// /// Parent control. public UpDownButton_Up(Base parent) : base(parent) { SetSize(7, 7); } /// /// Renders the control using specified skin. /// /// Skin to use. protected override void Render(Skin.Base skin) { skin.DrawNumericUpDownButton(this, IsDepressed, true); } } }