ComponentFactory.Krypton.Toolkit.ViewDrawMonthUpDown.OnButtonMouseSelect C# (CSharp) Method

OnButtonMouseSelect() protected method

Raises the MouseSelect event.
protected OnButtonMouseSelect ( object sender, MouseEventArgs e ) : void
sender object Source of the event.
e MouseEventArgs Event arguments assocaited with the event.
return void
        protected void OnButtonMouseSelect(object sender, MouseEventArgs e)
        {
            if (MouseSelect != null)
                MouseSelect(this, e);
        }