C# 클래스 SilverlightFX.UserInterface.AutoCompleteCompletingEventArgs

The event data associated with the AutoComplete behavior's Completing event.
상속: System.EventArgs
파일 보기 프로젝트 열기: nikhilk/silverlightfx 1 사용 예제들

Private Properties

프로퍼티 타입 설명
AutoCompleteCompletingEventArgs System

공개 메소드들

메소드 설명
AddServiceParameter ( string name, string value ) : void

Allows adding a query string parameter to the web request that will be invoked to get a list of completion items in addition to the prefix itself.

SetCompletionItems ( IList items ) : void

Allows providing a set of completion items to be used instead of invoking a web request to fetch a list. This enables using autocompletion with computed values.

SuppressDropDown ( ) : void

Suppresses the AutoComplete dropdown for this particular prefix.

비공개 메소드들

메소드 설명
AutoCompleteCompletingEventArgs ( string prefix ) : System

메소드 상세

AddServiceParameter() 공개 메소드

Allows adding a query string parameter to the web request that will be invoked to get a list of completion items in addition to the prefix itself.
public AddServiceParameter ( string name, string value ) : void
name string The name of the query string parameter.
value string The value of the query string parameter.
리턴 void

SetCompletionItems() 공개 메소드

Allows providing a set of completion items to be used instead of invoking a web request to fetch a list. This enables using autocompletion with computed values.
public SetCompletionItems ( IList items ) : void
items IList The alternate set of items to use.
리턴 void

SuppressDropDown() 공개 메소드

Suppresses the AutoComplete dropdown for this particular prefix.
public SuppressDropDown ( ) : void
리턴 void