ResourceDictionary.Clear 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.
Clears all keys (and values) in the base ResourceDictionary. This does not clear any merged dictionary items.
public:
virtual void Clear();
public void Clear ();
abstract member Clear : unit -> unit
override this.Clear : unit -> unit
Public Sub Clear ()
Implements
Remarks
If you need to clear merged dictionary items, obtain the particular dictionary from MergedDictionaries collection and specifically call Clear on that ResourceDictionary, although typically the dictionaries are remote and you might not have access. Alternatively, remove the entire ResourceDictionary from MergedDictionaries by calling Remove on the generic collection.