IEditableCollectionView.CanAddNew 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에 새 항목을 추가할 수 있는지 여부를 나타내는 값을 가져옵니다.
public:
property bool CanAddNew { bool get(); };
public bool CanAddNew { get; }
member this.CanAddNew : bool
Public ReadOnly Property CanAddNew As Boolean
속성 값
true컬렉션에 새 항목을 추가할 수 있으면 이고, 그렇지 않으면 . false
예제
다음 예제에서는 항목을 컬렉션에 추가할 수 있는지 여부를 확인합니다. 이 false경우 CanAddNew 항목을 추가할 수 없음을 사용자에게 알리는 예제입니다. 그렇지 않으면 사용자에게 새 항목을 추가하라는 메시지를 표시하는 양식이 표시됩니다. 전체 샘플은 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
설명
IEditableCollectionView 다음이 true이면 새 항목을 추가할 수 있습니다.
항목을 기본 컬렉션에 추가할 수 있습니다. 예를 들어 컬렉션이 읽기 전용 CanAddNew 인 경우는 다음과 같습니다
false.IEditableCollectionView 컬렉션에 있는 형식의 개체를 만들 수 있습니다. 예를 들어 컬렉션이 형식인 경우 형식 ObservableCollection<T>IEditableCollectionView 의
T개체를 만들 수 있어야 합니다.