BindingStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes the status of a binding.
public enum class BindingStatus
public enum BindingStatus
type BindingStatus =
Public Enum BindingStatus
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Unattached | 0 | The binding has not yet been attached to its target property. |
Inactive | 1 | The binding has not been activated. |
Active | 2 | The binding has been successfully activated. This means that the binding has been attached to its binding target (target) property and has located the binding source (source), resolved the |
Detached | 3 | The binding has been detached from its target property. |
AsyncRequestPending | 4 | The binding is waiting for an asynchronous operation to complete. |
PathError | 5 | The binding was unable to resolve the source path. |
UpdateTargetError | 6 | The binding could not successfully return a source value to update the target value. For more information, see FallbackValue. |
UpdateSourceError | 7 | The binding was unable to send the value to the source property. |
Remarks
XAML Text Usage
You do not typically use this enumeration in XAML.