HtmlControlDesigner.OnBindingsCollectionChanged(String) Método
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Atenção
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 ligação de dados foi alterada.
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 mudou.
- Atributos
Observações
O OnBindingsCollectionChanged método deve ser chamado por um designer de controlo depois de este ter feito uma alteração nas ligações de dados do controlo.
Note
O OnBindingsCollectionChanged método está obsoleto. Use o Changed evento na DataBindings coleção para funcionalidades equivalentes de designer de controlo.
Notas para Herdeiros
O OnBindingsCollectionChanged(String) método pode ser sobreposto e implementado para realizar processamento adicional quando a recolha de ligações de dados para o controlo mudou.