BindableObject.IsSet(BindableProperty) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定是否存在可绑定属性以及是否设置了值。
public:
bool IsSet(Microsoft::Maui::Controls::BindableProperty ^ targetProperty);
public bool IsSet (Microsoft.Maui.Controls.BindableProperty targetProperty);
member this.IsSet : Microsoft.Maui.Controls.BindableProperty -> bool
Public Function IsSet (targetProperty As BindableProperty) As Boolean
参数
- targetProperty
- BindableProperty
如果当前设置了值,则要检查的可绑定属性。
返回
如果目标属性存在并且已设置,则为 true
。 否则为 false
。
例外
当 targetProperty
为 null
时,将引发此异常。