C# 클래스 Esri.ArcGISRuntime.Toolkit.Controls.FeatureDataField.DataItem

Abstract base class for all DataItem derived class. They all should have a Value property and notify the FeatureDataField when thier value changes.
상속: INotifyPropertyChanged
파일 보기 프로젝트 열기: Esri/arcgis-toolkit-dotnet

보호된 프로퍼티들

프로퍼티 타입 설명
Callback Action

보호된 메소드들

메소드 설명
DataItem ( Action callback ) : System

Creates new instance of DataItem and sets the callback property.

DataItem ( Action callback, object value ) : System

Creates new instance of DataItem and sets the callback and value property.

OnPropertyChanged ( [ propertyName = null ) : void
OnValueChanged ( ) : void

Rasies the callback and passes the new value.

메소드 상세

DataItem() 보호된 메소드

Creates new instance of DataItem and sets the callback property.
protected DataItem ( Action callback ) : System
callback Action The callback to be raised /// when Value proeprty changes.
리턴 System

DataItem() 보호된 메소드

Creates new instance of DataItem and sets the callback and value property.
protected DataItem ( Action callback, object value ) : System
callback Action The callback to be raised /// when Value proeprty changes.
value object The default value.
리턴 System

OnPropertyChanged() 보호된 메소드

protected OnPropertyChanged ( [ propertyName = null ) : void
propertyName [
리턴 void

OnValueChanged() 보호된 메소드

Rasies the callback and passes the new value.
protected OnValueChanged ( ) : void
리턴 void

프로퍼티 상세

Callback 보호되어 있는 프로퍼티

Callback for notifying FeatureDataField that the value proepry has changed.
protected Action Callback
리턴 Action