C# Class 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).
Inheritance: System.Windows.Forms.TreeView, IFWDisposable
Afficher le fichier Open project: sillsdev/FieldWorks Class Usage Examples

Méthodes publiques

Méthode Description
CheckDisposed ( ) : void

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

Méthodes protégées

Méthode Description
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.

Method Details

CheckDisposed() public méthode

Check to see if the object has been disposed. All public Properties and Methods should call this before doing anything else.
public CheckDisposed ( ) : void
Résultat void

IsInputChar() protected méthode

We need to be able to handle the TAB key. Requires IsInputKey() == true.
protected IsInputChar ( char charCode ) : bool
charCode char
Résultat bool

IsInputKey() protected méthode

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
Résultat bool