ComboBoxArray.SelectionChangeCommitted Evento

Definição

Ocorre quando o item selecionado foi alterado e essa alteração é exibida no ComboBox.Occurs when the selected item has changed and that change is displayed in the ComboBox.

public:
 event EventHandler ^ SelectionChangeCommitted;
public event EventHandler SelectionChangeCommitted;
member this.SelectionChangeCommitted : EventHandler 
Public Custom Event SelectionChangeCommitted As EventHandler 
Public Event SelectionChangeCommitted As EventHandler 

Tipo de evento

EventHandler

Comentários

SelectionChangeCommitted é gerado somente quando o usuário altera a seleção da caixa de combinação.SelectionChangeCommitted is raised only when the user changes the combo box selection. Não use SelectedIndexChanged ou SelectedValueChanged para capturar alterações de usuário, pois esses eventos também são gerados quando a seleção é alterada de forma programática.Do not use SelectedIndexChanged or SelectedValueChanged to capture user changes, because those events are also raised when the selection changes programmatically.

Para obter mais informações sobre como lidar com eventos, consulte manipulando e gerando eventos.For more information about how to handle events, see Handling and Raising Events.

Observação

As funções e os objetos no namespace Microsoft.VisualBasic.Compatibility.VB6 são fornecidos para uso pelas ferramentas para atualização do Visual Basic 6.0 para o Visual Basic.Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic. Na maioria dos casos, essas funções e objetos duplicam a funcionalidade que é possível encontrar em outros namespaces no .NET FrameworkIn most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. Eles apenas são necessários quando o modelo de código do Visual Basic 6.0 difere significativamente da implementação do .NET Framework.They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.

Aplica-se a