C# Class DataGridViewAutoFilter.DataGridViewAutoFilterMultiColumnHeaderCell.FilterListBox

Represents a ListBox control used as a drop-down filter list in a DataGridView control.
Inheritance: System.Windows.Forms.ListBox
显示文件 Open project: Duke-Jones/ED-IBE

Public Methods

Method Description
FilterListBox ( ) : System

Initializes a new instance of the FilterListBox class.

Protected Methods

Method Description
IsInputKey ( Keys keyData ) : bool

Indicates that the FilterListBox will handle (or ignore) all keystrokes that are not handled by the operating system.

ProcessKeyMessage ( Message &m ) : bool

Processes a keyboard message directly, preventing it from being intercepted by the parent DataGridView control.

Method Details

FilterListBox() public method

Initializes a new instance of the FilterListBox class.
public FilterListBox ( ) : System
return System

IsInputKey() protected method

Indicates that the FilterListBox will handle (or ignore) all keystrokes that are not handled by the operating system.
protected IsInputKey ( Keys keyData ) : bool
keyData Keys A Keys value that represents the keyboard input.
return bool

ProcessKeyMessage() protected method

Processes a keyboard message directly, preventing it from being intercepted by the parent DataGridView control.
protected ProcessKeyMessage ( Message &m ) : bool
m System.Windows.Forms.Message A Message, passed by reference, that /// represents the window message to process.
return bool