using System; using Gwen.Control; namespace Gwen.ControlInternal { /// /// Numeric down arrow. /// internal class UpDownButton_Down : Button { /// /// Initializes a new instance of the class. /// /// Parent control. public UpDownButton_Down(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, false); } } }