Nuaj.Cirrus.Utility.IntegerTrackbarControl.OnMouseUp C# (CSharp) Метод

OnMouseUp() защищенный Метод

protected OnMouseUp ( MouseEventArgs e ) : void
e MouseEventArgs
Результат void
        protected override void OnMouseUp( MouseEventArgs e )
        {
            base.OnMouseUp( e );

            if ( !m_bSliderDragging )
                return;

            m_bSliderDragging = false;

            // Notify of the stop of value change
            if ( SliderDragStop != null )
                SliderDragStop( this, m_StartValue );
        }