ResourceDictionary.Clear Method

Definition

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.

Applies to