BExplorer.Shell.FileNameComboBox.IsInputKey C# (CSharp) Method

IsInputKey() protected method

Determines whether the specified key is a regular input key or a special key that requires preprocessing.
protected IsInputKey ( Keys keyData ) : bool
keyData Keys /// One of the values. ///
return bool
        protected override bool IsInputKey(Keys keyData) => keyData == Keys.Enter ? true : base.IsInputKey(keyData);