ListViewUpdatedEventArgs.KeepInEditMode Propriedade
Definição
public:
property bool KeepInEditMode { bool get(); void set(bool value); };
public bool KeepInEditMode { get; set; }
member this.KeepInEditMode : bool with get, set
Public Property KeepInEditMode As Boolean
Valor da propriedade
true Se o controle deve permanecer no modo de edição após uma operação de atualização; caso contrário, false .true if the control should remain in edit mode after an update operation; otherwise, false. O padrão é false.The default is false.
Exemplos
O exemplo a seguir mostra como usar a KeepInEditMode propriedade para manter um ListView controle no modo de edição quando ocorre uma exceção.The following example shows how to use the KeepInEditMode property to keep a ListView control in edit mode when an exception occurs. Este exemplo de código faz parte de um exemplo maior fornecido para a ListViewUpdatedEventArgs classe.This code example is part of a larger example provided for the ListViewUpdatedEventArgs class.
void ContactsListView_ItemUpdated(Object sender, ListViewUpdatedEventArgs e)
{
if (e.Exception != null)
{
if (e.AffectedRows == 0)
{
e.KeepInEditMode = true;
Message.Text = "An exception occurred updating the contact. " +
"Please verify your values and try again.";
}
else
Message.Text = "An exception occurred updating the contact. " +
"Please verify the values in the recently updated item.";
e.ExceptionHandled = true;
}
}
Sub ContactsListView_ItemUpdated(sender As Object, e As ListViewUpdatedEventArgs)
If e.Exception IsNot Nothing Then
If e.AffectedRows = 0 Then
e.KeepInEditMode = True
Message.Text = "An exception occurred updating the contact. " & _
"Please verify your values and try again."
Else
Message.Text = "An exception occurred updating the contact. " & _
"Please verify the values in the recently updated item."
End If
e.ExceptionHandled = True
End If
End Sub
Comentários
Por padrão, o ListView controle retorna para o modo somente leitura após uma operação de atualização.By default, the ListView control returns to read-only mode after an update operation. Defina a KeepInEditMode propriedade como true para especificar que o ListView controle deve permanecer no modo de edição.Set the KeepInEditMode property to true to specify that the ListView control should remain in edit mode. Isso também preserva os valores que o usuário inseriu.This also preserves the values that the user has entered.