ResourceDictionary.Remove(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.