C# Класс SIL.FieldWorks.Common.Widgets.FwTreeView

We need to subclass TreeView in order to override IsInputChar(), otherwise TreeView will not try to handle TAB keys (cf. LT-2190).
Наследование: System.Windows.Forms.TreeView, IFWDisposable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
CheckDisposed ( ) : void

Check to see if the object has been disposed. All public Properties and Methods should call this before doing anything else.

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

Метод Описание
IsInputChar ( char charCode ) : bool

We need to be able to handle the TAB key. Requires IsInputKey() == true.

IsInputKey ( Keys keyData ) : bool

We need to be able to handle the TAB key. IsInputKey() must be true for IsInputChar() to be called.

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

CheckDisposed() публичный метод

Check to see if the object has been disposed. All public Properties and Methods should call this before doing anything else.
public CheckDisposed ( ) : void
Результат void

IsInputChar() защищенный метод

We need to be able to handle the TAB key. Requires IsInputKey() == true.
protected IsInputChar ( char charCode ) : bool
charCode char
Результат bool

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

We need to be able to handle the TAB key. IsInputKey() must be true for IsInputChar() to be called.
protected IsInputKey ( Keys keyData ) : bool
keyData Keys
Результат bool