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
파일 보기 프로젝트 열기: sillsdev/FieldWorks 1 사용 예제들

공개 메소드들

메소드 설명
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