ZForge.Controls.XPTable.Editors.DropDownCellEditor.StopEditing C# (CSharp) Méthode

StopEditing() public méthode

Stops editing the Cell and commits any changes
public StopEditing ( ) : void
Résultat void
        public override void StopEditing()
        {
            this.TextBox.KeyPress -= new KeyPressEventHandler(OnKeyPress);
            this.TextBox.LostFocus -= new EventHandler(OnLostFocus);

            base.StopEditing();

            this.DroppedDown = false;

            this.parentForm = null;
        }