HtmlControlDesigner.OnBindingsCollectionChanged Method
.NET Framework 3.0
NOTE: This method is now obsolete.
Provides a method that can be used to indicate when a data binding has changed. Namespace: System.Web.UI.DesignAssembly: System.Design (in system.design.dll)
[ObsoleteAttribute(L"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: virtual void OnBindingsCollectionChanged ( String^ propName )
/** @attribute ObsoleteAttribute("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 void OnBindingsCollectionChanged (
String propName
)
ObsoleteAttribute("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 function OnBindingsCollectionChanged ( propName : String )
Not applicable.
Parameters
- propName
The name of the property that has changed.
The OnBindingsCollectionChanged method should be called by a control designer after the control designer has made a change to the data bindings for the control.
Note: |
|---|
| The OnBindingsCollectionChanged method is obsolete. Use the Changed event on the DataBindings collection for equivalent control designer functionality. |
Community Additions
ADD
Show:
Note: