Habanero.Faces.Win.CalendarEditingControl.OnValueChanged C# (CSharp) Method

OnValueChanged() protected method

A handler to carry out repercussions of a changed value
protected OnValueChanged ( EventArgs eventargs ) : void
eventargs System.EventArgs Arguments relating to the event
return void
        protected override void OnValueChanged(EventArgs eventargs)
        {
            // Notify the DataGridView that the contents of the cell
            // have changed.
            _valueChanged = true;
            this.EditingControlDataGridView.NotifyCurrentCellDirty(true);
            base.OnValueChanged(eventargs);
        }
    }