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 );
        }