ListViewCommandEventArgs.Handled Propriedade
Definição
Obtém ou define um valor que indica se o controle manipulou o evento.Gets or sets a value that indicates whether the control has handled the event.
public:
property bool Handled { bool get(); void set(bool value); };
public bool Handled { get; set; }
member this.Handled : bool with get, set
Public Property Handled As Boolean
Valor da propriedade
true Se o código de evento vinculado a dados foi ignorado ou foi concluído; caso contrário, false .true if data-bound event code was skipped or has finished; otherwise, false.
Comentários
Defina essa propriedade como true no manipulador de eventos para especificar que o ListView controle não deve manipular o evento porque você está manipulando-o em seu código.Set this property to true in the event handler to specify that the ListView control should not handle the event because you are handling it in your code.