IEditableCollectionView.CommitNew 메서드

정의

트랜잭션 추가를 종료하고 보류 중인 새 항목을 저장합니다.

public:
 void CommitNew();
public void CommitNew();
abstract member CommitNew : unit -> unit
Public Sub CommitNew ()

예제

다음 예제에서는 사용자에게 새 항목을 추가하라는 메시지를 표시하는 양식을 표시합니다. 사용자가 양식을 제출하는 경우 예제에서는 컬렉션에 항목을 추가하도록 호출 CommitNew 합니다. 사용자가 양식을 취소하면 이 예제에서는 항목을 삭제하도록 호출 CancelNew 합니다. 전체 샘플은 IEditableCollectionView 샘플을 사용하여 컬렉션 변경을 참조하세요.

IEditableCollectionView editableCollectionView =
    itemsControl.Items;

if (!editableCollectionView.CanAddNew)
{
    _ = MessageBox.Show("You cannot add items to the list.");
    return;
}

// Create a window that prompts the user to enter a new
// item to sell.
ChangeItemWindow win = new()
{
    //Create a new item to be added to the collection.
    DataContext = editableCollectionView.AddNew()
};

// If the user submits the new item, commit the new
// object to the collection.  If the user cancels 
// adding the new item, discard the new item.
if ((bool)win.ShowDialog())
{
    editableCollectionView.CommitNew();
}
else
{
    editableCollectionView.CancelNew();
}
Dim editableCollectionView As IEditableCollectionView = TryCast(itemsControl.Items, IEditableCollectionView)

If Not editableCollectionView.CanAddNew Then
    MessageBox.Show("You cannot add items to the list.")
    Return
End If

' Create a window that prompts the user to enter a new
' item to sell.
Dim win As New ChangeItemWindow()

'Create a new item to be added to the collection.
win.DataContext = editableCollectionView.AddNew()

' If the user submits the new item, commit the new
' object to the collection.  If the user cancels 
' adding the new item, discard the new item.
If CBool(win.ShowDialog()) Then
    editableCollectionView.CommitNew()
Else
    editableCollectionView.CancelNew()
End If

설명

호출 시 새 항목 CommitNewCollectionView 적용되는 필터링, 정렬 또는 그룹화가 적용됩니다.

적용 대상