ControlDesigner.OnBindingsCollectionChanged(String) Method
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.
Caution
The recommended alternative is to handle the Changed event on the DataBindings collection. The DataBindings collection allows more control of the databindings associated with the control. http://go.microsoft.com/fwlink/?linkid=14202
Called when the data-binding collection changes.
protected:
override void OnBindingsCollectionChanged(System::String ^ propName);
protected override void OnBindingsCollectionChanged (string propName);
[System.Obsolete("The recommended alternative is to handle the Changed event on the DataBindings collection. The DataBindings collection allows more control of the databindings associated with the control. http://go.microsoft.com/fwlink/?linkid=14202")]
protected override void OnBindingsCollectionChanged (string propName);
override this.OnBindingsCollectionChanged : string -> unit
[<System.Obsolete("The recommended alternative is to handle the Changed event on the DataBindings collection. The DataBindings collection allows more control of the databindings associated with the control. http://go.microsoft.com/fwlink/?linkid=14202")>]
override this.OnBindingsCollectionChanged : string -> unit
Protected Overrides Sub OnBindingsCollectionChanged (propName As String)
Parameters
- propName
- String
The property to test for changes in its bindings collection.
- Attributes
Remarks
The OnBindingsCollectionChanged method is called when the data-binding collection has been changed by an external caller.
Note
The OnBindingsCollectionChanged method is obsolete. Use the Changed event on the DataBindings collection for equivalent control designer functionality.