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 。 也就是说,应用程序开发人员通常通过定义一个 public 属性来为绑定属性提供接口,该属性的访问 get 器将 的结果 GetValue(BindableProperty) 强制转换为适当的类型并返回该属性,其 set 访问器使用 SetValue(BindableProperty, Object) 在正确的属性上设置值。 应用程序开发人员不应在定义绑定属性接口的公共属性中执行其他步骤。

适用于