BindingCompleteEventArgs Class
Provides data for the BindingComplete event.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
System.EventArgs
System.ComponentModel.CancelEventArgs
System.Windows.Forms.BindingCompleteEventArgs
| Name | Description | |
|---|---|---|
![]() | BindingCompleteEventArgs(Binding, BindingCompleteState, BindingCompleteContext) | Initializes a new instance of the BindingCompleteEventArgs class with the specified binding, error state, and binding context. |
![]() | BindingCompleteEventArgs(Binding, BindingCompleteState, BindingCompleteContext, String) | Initializes a new instance of the BindingCompleteEventArgs class with the specified binding, error state and text, and binding context. |
![]() | BindingCompleteEventArgs(Binding, BindingCompleteState, BindingCompleteContext, String, Exception) | Initializes a new instance of the BindingCompleteEventArgs class with the specified binding, error state and text, binding context, and exception. |
![]() | BindingCompleteEventArgs(Binding, BindingCompleteState, BindingCompleteContext, String, Exception, Boolean) | Initializes a new instance of the BindingCompleteEventArgs class with the specified binding, error state and text, binding context, exception, and whether the binding should be cancelled. |
| Name | Description | |
|---|---|---|
![]() | Binding | Gets the binding associated with this occurrence of a BindingComplete event. |
![]() | BindingCompleteContext | Gets the direction of the binding operation. |
![]() | BindingCompleteState | Gets the completion state of the binding operation. |
![]() | Cancel | Gets or sets a value indicating whether the event should be canceled.(Inherited from CancelEventArgs.) |
![]() | ErrorText | Gets the text description of the error that occurred during the binding operation. |
![]() | Exception | Gets the exception that occurred during the binding operation. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The BindingCompleteEventArgs contains information regarding exceptions or errors that occurred during a binding process.
The following code example demonstrates handling the BindingComplete event. To run this code, paste it into an empty code file.
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


