ResourceDictionary.Add(Object, 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.
Adds a resource by key to this ResourceDictionary.
public:
virtual void Add(System::Object ^ key, System::Object ^ value);
public void Add (object key, object value);
abstract member Add : obj * obj -> unit
override this.Add : obj * obj -> unit
Public Sub Add (key As Object, value As Object)
Parameters
- key
- Object
The name of the key to add.
- value
- Object
The value of the resource to add.
Implements
Exceptions
The ResourceDictionary is locked or read-only.
An element with the same key already exists in the Hashtable.
Remarks
Attempting to add a duplicate key raises an exception.
Keys are always added to the base dictionary. Keys in MergedDictionaries within the current ResourceDictionary are not checked for duplication, only the base dictionary is checked for duplicates.