C# Класс BExplorer.Shell.FileNameComboBox

A filename combo box suitable for use in file Open/Save dialogs.

This control extends the ComboBox class to provide auto-completion of filenames based on the folder selected in a ShellView. The control also automatically navigates the ShellView control when the user types a folder path.

Наследование: System.Windows.Forms.ComboBox
Показать файл Открыть проект

Private Properties

Свойство Тип Описание
AutoComplete void
Open bool

Защищенные методы

Метод Описание
IsInputKey ( Keys keyData ) : bool

Determines whether the specified key is a regular input key or a special key that requires preprocessing.

OnKeyDown ( KeyEventArgs e ) : void

Raises the Control.KeyDown event.

OnKeyPress ( KeyPressEventArgs e ) : void

Raises the Control.KeyPress event.

OnTextChanged ( EventArgs e ) : void

Raises the Control.TextChanged event.

Приватные методы

Метод Описание
AutoComplete ( ) : void
Open ( string path ) : bool

Описание методов

IsInputKey() защищенный Метод

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. ///
Результат bool

OnKeyDown() защищенный Метод

Raises the Control.KeyDown event.
protected OnKeyDown ( KeyEventArgs e ) : void
e System.Windows.Forms.KeyEventArgs /// A that contains the event data. ///
Результат void

OnKeyPress() защищенный Метод

Raises the Control.KeyPress event.
protected OnKeyPress ( KeyPressEventArgs e ) : void
e System.Windows.Forms.KeyPressEventArgs /// A that contains the event data. ///
Результат void

OnTextChanged() защищенный Метод

Raises the Control.TextChanged event.
protected OnTextChanged ( EventArgs e ) : void
e System.EventArgs /// An that contains the event data. ///
Результат void