BindingGroup.BeginEdit 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.
Inicia uma transação de edição nas fontes no BindingGroup.
public:
void BeginEdit();
public void BeginEdit ();
member this.BeginEdit : unit -> unit
Public Sub BeginEdit ()
Exemplos
O exemplo a seguir chama BeginEdit quando uma janela é carregada para iniciar a transação de edição.
void stackPanel1_Loaded(object sender, RoutedEventArgs e)
{
// Set the DataContext to a PurchaseItem object.
// The BindingGroup and Binding objects use this as
// the source.
stackPanel1.DataContext = new PurchaseItem();
// Begin an edit transaction that enables
// the object to accept or roll back changes.
stackPanel1.BindingGroup.BeginEdit();
}
Private Sub stackPanel1_Loaded(ByVal sender As Object, ByVal e As RoutedEventArgs)
' Set the DataContext to a PurchaseItem object.
' The BindingGroup and Binding objects use this as
' the source.
stackPanel1.DataContext = New PurchaseItem()
' Begin an edit transaction that enables
' the object to accept or roll back changes.
stackPanel1.BindingGroup.BeginEdit()
End Sub
Comentários
Se as fontes no BindingGroup suporte descartarem alterações pendentes, você poderá chamar BeginEdit para iniciar a transação de edição, chamar CommitEdit para salvar as alterações pendentes, chamar CancelEdit para descartar as alterações pendentes.
Para cada objeto que Items implementa IEditableObject, BeginEdit chamadas IEditableObject.BeginEdit