/// <summary>
            ///
            /// </summary>
            private void DrawUpDownButton()
            {
                bool mouseOver       = false;
                bool mousePress      = LeftKeyPressed();
                bool mouseInUpButton = false;

                TabControlNativeMethods.RECT rect = new TabControlNativeMethods.RECT();

                TabControlNativeMethods.GetClientRect(base.Handle, ref rect);

                Rectangle clipRect = Rectangle.FromLTRB(rect.Top, rect.Left, rect.Right, rect.Bottom);

                Point cursorPoint = new Point();

                TabControlNativeMethods.GetCursorPos(ref cursorPoint);

                TabControlNativeMethods.GetWindowRect(base.Handle, ref rect);

                mouseOver = TabControlNativeMethods.PtInRect(ref rect, cursorPoint);

                cursorPoint.X -= rect.Left;

                cursorPoint.Y -= rect.Top;

                mouseInUpButton = cursorPoint.X < clipRect.Width / 2;

                using (Graphics g = Graphics.FromHwnd(base.Handle))
                {
                    UpDownButtonPaintEventArgs e =
                        new UpDownButtonPaintEventArgs(
                            g,
                            clipRect,
                            mouseOver,
                            mousePress,
                            mouseInUpButton);
                    this._Owner.OnPaintUpDownButton(e);
                }
            }
        /// <summary>
        ///
        /// </summary>
        /// <param name="e"></param>
        protected virtual void OnPaintUpDownButton(UpDownButtonPaintEventArgs e)
        {
            Graphics  g    = e.Graphics;
            Rectangle rect = e.ClipRectangle;

            Color upButtonBaseColor   = _BaseColor;
            Color upButtonBorderColor = _BorderColor;
            Color upButtonArrowColor  = _ArrowColor;

            Color downButtonBaseColor   = _BaseColor;
            Color downButtonBorderColor = _BorderColor;
            Color downButtonArrowColor  = _ArrowColor;

            Rectangle upButtonRect = rect;

            upButtonRect.X      += 4;
            upButtonRect.Y      += 4;
            upButtonRect.Width   = rect.Width / 2 - 8;
            upButtonRect.Height -= 8;

            Rectangle downButtonRect = rect;

            downButtonRect.X       = upButtonRect.Right + 2;
            downButtonRect.Y      += 4;
            downButtonRect.Width   = rect.Width / 2 - 8;
            downButtonRect.Height -= 8;

            if (Enabled)
            {
                if (e.MouseOver)
                {
                    if (e.MousePress)
                    {
                        if (e.MouseInUpButton)
                        {
                            upButtonBaseColor = GetColor(_BaseColor, 0, -35, -24, -9);
                        }
                        else
                        {
                            downButtonBaseColor = GetColor(_BaseColor, 0, -35, -24, -9);
                        }
                    }
                    else
                    {
                        if (e.MouseInUpButton)
                        {
                            upButtonBaseColor = GetColor(_BaseColor, 0, 35, 24, 9);
                        }
                        else
                        {
                            downButtonBaseColor = GetColor(_BaseColor, 0, 35, 24, 9);
                        }
                    }
                }
            }
            else
            {
                upButtonBaseColor   = SystemColors.Control;
                upButtonBorderColor = SystemColors.ControlDark;
                upButtonArrowColor  = SystemColors.ControlDark;

                downButtonBaseColor   = SystemColors.Control;
                downButtonBorderColor = SystemColors.ControlDark;
                downButtonArrowColor  = SystemColors.ControlDark;
            }

            g.SmoothingMode = SmoothingMode.AntiAlias;

            Color backColor = Enabled ? _BackColor : SystemColors.Control;

            using (SolidBrush brush = new SolidBrush(_BackColor))
            {
                rect.Inflate(1, 1);
                g.FillRectangle(brush, rect);
            }

            RenderButton(
                g,
                upButtonRect,
                upButtonBaseColor,
                upButtonBorderColor,
                upButtonArrowColor,
                ArrowDirection.Left);
            RenderButton(
                g,
                downButtonRect,
                downButtonBaseColor,
                downButtonBorderColor,
                downButtonArrowColor,
                ArrowDirection.Right);

            UpDownButtonPaintEventHandler handler = base.Events[EventPaintUpDownButton] as UpDownButtonPaintEventHandler;

            if (handler != null)
            {
                handler(this, e);
            }
        }