次の方法で共有


BindableObject.GetValue(BindableProperty) メソッド

定義

指定されたバインド可能なプロパティに含まれる値を返します。

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 に含まれる値。

例外

propertynull の場合にスローされます。

注釈

GetValue(BindableProperty)および SetValue(BindableProperty, Object) は、によって実装されるプロパティの値にアクセスするために使用され BindableProperty ます。 つまり、通常、アプリケーション開発者は、アクセサーがの結果を適切な型にキャストして返し、アクセサgetーが使用して正しいプロパティにGetValue(BindableProperty)値を設定するプロパティを定義publicすることで、setSetValue(BindableProperty, Object)バインドされたプロパティのインターフェイスを提供します。 アプリケーション開発者は、バインドされたプロパティのインターフェイスを定義するパブリック プロパティで他の手順を実行しないでください。

適用対象