HtmlControlDesigner.OnBindingsCollectionChanged(String) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Cuidado
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
Fornece um método que pode ser usado para indicar quando uma associação de dados mudou.
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
O nome da propriedade que foi modificada.
- Atributos
Comentários
O OnBindingsCollectionChanged método deve ser chamado por um designer de controle depois que o designer de controle tiver feito uma alteração nas associações de dados para o controle.
Observação
O OnBindingsCollectionChanged método é obsoleto. Use o Changed evento na DataBindings coleção para funcionalidade de designer de controle equivalente.
Notas aos Herdeiros
O OnBindingsCollectionChanged(String) método pode ser substituído e implementado para executar processamento adicional quando a coleção de associações de dados para o controle for alterada.