HtmlControlDesigner.OnBindingsCollectionChanged(String) Método

Definición

Precaución

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

Proporciona un método que puede utilizarse para indicar cuándo se ha modificado un enlace de datos.

protected:
 virtual void OnBindingsCollectionChanged(System::String ^ propName);
protected virtual 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 virtual void OnBindingsCollectionChanged (string propName);
abstract member OnBindingsCollectionChanged : string -> unit
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")>]
abstract member OnBindingsCollectionChanged : string -> unit
override this.OnBindingsCollectionChanged : string -> unit
Protected Overridable Sub OnBindingsCollectionChanged (propName As String)

Parámetros

propName
String

Nombre de la propiedad que se ha modificado.

Atributos

Comentarios

Un OnBindingsCollectionChanged diseñador de controles debe llamar al método después de que el diseñador de controles haya realizado un cambio en los enlaces de datos para el control.

Nota:

El OnBindingsCollectionChanged método está obsoleto. Use el Changed evento de la DataBindings colección para la funcionalidad equivalente del diseñador de controles.

Notas a los desarrolladores de herederos

El OnBindingsCollectionChanged(String) método se puede invalidar e implementar para realizar un procesamiento adicional cuando la colección de enlaces de datos del control ha cambiado.

Se aplica a

Consulte también