14 references to _values
System.Windows.Forms (14)
System\Windows\Forms\PropertyStore.cs (14)
26public bool ContainsKey(int key) => _values.ContainsKey(key); 36public void RemoveValue(int key) => _values.Remove(key); 43if (_values.TryGetValue(key, out Value foundValue)) 59if (_values.TryGetValue(key, out Value foundValue)) 72if (_values.TryGetValue(key, out Value foundValue)) 87if (_values.TryGetValue(key, out Value foundValue)) 112if (_values.TryGetValue(key, out Value foundValue)) 137_values.Remove(key); 143_values[key] = new(value); 161bool found = _values.TryGetValue(key, out Value foundValue); 180_values.Remove(key); 211_values[key] = Value.Create(value); 222if (_values.TryGetValue(key, out Value foundValue) && foundValue.Type == typeof(StrongBox<T>)) 229_values[key] = Value.Create(new StrongBox<T>(value));