1 write to _wrappedDictionary
WindowsFormsIntegration (1)
System\Windows\Integration\PropertyMap.cs (1)
54_wrappedDictionary = new Dictionary<string, PropertyTranslator>();
8 references to _wrappedDictionary
WindowsFormsIntegration (8)
System\Windows\Integration\PropertyMap.cs (8)
91if (_wrappedDictionary.TryGetValue(propertyName, out value)) 110_wrappedDictionary[propertyName] = value; //This will replace an existing mapping, unlike Add. 123return _wrappedDictionary.Keys; 135return _wrappedDictionary.Values; 211_wrappedDictionary.Clear(); 221return _wrappedDictionary.ContainsKey(propertyName); 231_wrappedDictionary.Remove(propertyName); 315if (!_wrappedDictionary.TryGetValue(propertyName, out translator) || translator == null)