BindableObject.SetValue 方法

定义

重载

SetValue(BindableProperty, Object)

设置指定的可绑定属性的值。

SetValue(BindablePropertyKey, Object)

设置指定的可绑定属性的值。

SetValue(BindableProperty, Object)

Source:
BindableObject.cs
Source:
BindableObject.cs

设置指定的可绑定属性的值。

public:
 void SetValue(Microsoft::Maui::Controls::BindableProperty ^ property, System::Object ^ value);
public void SetValue (Microsoft.Maui.Controls.BindableProperty property, object value);
member this.SetValue : Microsoft.Maui.Controls.BindableProperty * obj -> unit
Public Sub SetValue (property As BindableProperty, value As Object)

参数

property
BindableProperty

要为其分配值的可绑定属性。

value
Object

要设置的 值。

例外

propertynull.

注解

如果 property 为只读,则不会发生任何操作。

适用于

SetValue(BindablePropertyKey, Object)

Source:
BindableObject.cs
Source:
BindableObject.cs

设置指定的可绑定属性的值。

public:
 void SetValue(Microsoft::Maui::Controls::BindablePropertyKey ^ propertyKey, System::Object ^ value);
public void SetValue (Microsoft.Maui.Controls.BindablePropertyKey propertyKey, object value);
member this.SetValue : Microsoft.Maui.Controls.BindablePropertyKey * obj -> unit
Public Sub SetValue (propertyKey As BindablePropertyKey, value As Object)

参数

propertyKey
BindablePropertyKey

标识要向其分配值的可绑定属性的键。

value
Object

要设置的 值。

例外

propertyKeynull.

当标识的 propertyKey 可绑定属性为只读时引发。

适用于