using System; using Gwen.Control; namespace Gwen.ControlInternal { /// /// Inner panel of tab control. /// public class TabControlInner : Base { /// /// Initializes a new instance of the class. /// /// Parent control. internal TabControlInner(Base parent) : base(parent) { } /// /// Renders the control using specified skin. /// /// Skin to use. protected override void Render(Skin.Base skin) { skin.DrawTabControl(this); } } }