1 write to _wrappedDictionary
WindowsFormsIntegration (1)
System\Windows\Integration\PropertyMap.cs (1)
34_wrappedDictionary = new Dictionary<string, PropertyTranslator>();
8 references to _wrappedDictionary
WindowsFormsIntegration (8)
System\Windows\Integration\PropertyMap.cs (8)
71if (_wrappedDictionary.TryGetValue(propertyName, out value)) 90_wrappedDictionary[propertyName] = value; //This will replace an existing mapping, unlike Add. 103return _wrappedDictionary.Keys; 115return _wrappedDictionary.Values; 191_wrappedDictionary.Clear(); 201return _wrappedDictionary.ContainsKey(propertyName); 211_wrappedDictionary.Remove(propertyName); 295if (!_wrappedDictionary.TryGetValue(propertyName, out translator) || translator == null)