IEditableCollectionView.CanRemove 属性

定义

获取一个值,该值指示是否可以从集合中移除项。

public:
 property bool CanRemove { bool get(); };
public bool CanRemove { get; }
member this.CanRemove : bool
Public ReadOnly Property CanRemove As Boolean

属性值

如果可以从集合中移除项,则为 true;否则为 false

示例

以下示例调用 CanRemove 检查是否可以从集合中删除项。 如果可以删除某个项,该示例将提示用户确认操作,并在用户单击“”时调用 Remove 。 有关整个示例,请参阅 使用 IEditableCollectionView 示例更改集合

IEditableCollectionView editableCollectionView = 
        itemsControl.Items as IEditableCollectionView; 

if (!editableCollectionView.CanRemove)
{
    MessageBox.Show("You cannot remove items from the list.");
    return;
}

if (MessageBox.Show("Are you sure you want to remove " + item.Description,
                    "Remove Item", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
{
    editableCollectionView.Remove(itemsControl.SelectedItem);
}
Dim editableCollectionView As IEditableCollectionView = TryCast(itemsControl.Items, IEditableCollectionView)

If Not editableCollectionView.CanRemove Then
    MessageBox.Show("You cannot remove items from the list.")
    Return
End If

If MessageBox.Show("Are you sure you want to remove " & item.Description, "Remove Item", MessageBoxButton.YesNo) = MessageBoxResult.Yes Then
    editableCollectionView.Remove(itemsControl.SelectedItem)
End If

注解

CanRemovefalse如果基础集合为只读,则为 。

适用于