ResourceDictionary.Remove(Object) Method

Definition

Removes the entry with the specified key from the base dictionary.

public:
 virtual void Remove(System::Object ^ key);
public void Remove (object key);
abstract member Remove : obj -> unit
override this.Remove : obj -> unit
Public Sub Remove (key As Object)

Parameters

key
Object

Key of the entry to remove.

Implements

Exceptions

The ResourceDictionary is locked or read-only.

Remarks

If the ResourceDictionary does not contain an element with the specified key, the ResourceDictionary remains unchanged. No exception is raised.

This method does not remove keys from the MergedDictionaries. You must obtain the specific ResourceDictionary from the collection to remove those keys, but that might not be possible because you are typically accessing such a dictionary remotely.

Applies to