BindableObject.GetValue(BindableProperty) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回包含在指定可系結屬性中的值。
public:
System::Object ^ GetValue(Microsoft::Maui::Controls::BindableProperty ^ property);
public object GetValue (Microsoft.Maui.Controls.BindableProperty property);
member this.GetValue : Microsoft.Maui.Controls.BindableProperty -> obj
Public Function GetValue (property As BindableProperty) As Object
參數
- property
- BindableProperty
要為其取得值的可系結屬性。
傳回
BindableProperty 中包含的值。
例外狀況
當 property
為 null
時擲回。
備註
GetValue(BindableProperty)和 SetValue(BindableProperty, Object) 是用來存取由所執行的屬性值 BindableProperty 。 也就是說,應用程式開發人員通常會藉由定義public
存取子將 的結果GetValue(BindableProperty)轉換成適當型別並傳回它的屬性get
,以及存取set
子用來SetValue(BindableProperty, Object)在正確的屬性上設定值,來提供系結屬性的介面。 應用程式開發人員不應該在定義系結屬性介面的公用屬性中執行任何其他步驟。