共用方式為


BindableObject.SetValue 方法

定義

多載

SetValue(BindableProperty, Object)

設定指定之可系結屬性的值。

SetValue(BindablePropertyKey, Object)

設定指定之可系結屬性的值。

SetValue(BindableProperty, Object)

來源:
BindableObject.cs
來源:
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

要設定的 值。

例外狀況

當 為nullproperty擲回 。

備註

如果 property 是唯讀的,則不會發生任何動作。

適用於

SetValue(BindablePropertyKey, Object)

來源:
BindableObject.cs
來源:
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

要設定的 值。

例外狀況

當 為nullpropertyKey擲回 。

當所 propertyKey 識別的可系結屬性為只讀時擲回。

適用於