BindableObject.SetValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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
要设置的 值。
例外
当 property
为 null
.
注解
如果 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
要设置的 值。
例外
当 propertyKey
为 null
.
当标识的 propertyKey
可绑定属性为只读时引发。