HtmlControlDesigner.OnBindingsCollectionChanged(String) Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
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.