1 write to _wrappedDictionary
WindowsFormsIntegration (1)
System\Windows\Integration\PropertyMap.cs (1)
33_wrappedDictionary = new Dictionary<string, PropertyTranslator>();
8 references to _wrappedDictionary
WindowsFormsIntegration (8)
System\Windows\Integration\PropertyMap.cs (8)
70if (_wrappedDictionary.TryGetValue(propertyName, out value)) 89_wrappedDictionary[propertyName] = value; //This will replace an existing mapping, unlike Add. 102return _wrappedDictionary.Keys; 114return _wrappedDictionary.Values; 190_wrappedDictionary.Clear(); 200return _wrappedDictionary.ContainsKey(propertyName); 210_wrappedDictionary.Remove(propertyName); 294if (!_wrappedDictionary.TryGetValue(propertyName, out translator) || translator == null)