15 references to _values
System.Windows.Forms (15)
System\Windows\Forms\PropertyStore.cs (15)
26public bool ContainsKey(int key) => _values.ContainsKey(key); 36public void RemoveValue(int key) => _values.Remove(key); 44if (_values.TryGetValue(key, out Value foundValue)) 58if (_values.TryGetValue(key, out Value foundValue)) 71if (_values.TryGetValue(key, out Value foundValue)) 86if (_values.TryGetValue(key, out Value foundValue)) 108if (_values.TryGetValue(key, out Value foundValue)) 133_values.Remove(key); 139_values[key] = new(value); 157bool found = _values.TryGetValue(key, out Value foundValue); 172_values.Remove(key); 178_values[key] = new(value); 203_values[key] = Value.Create(value); 214if (_values.TryGetValue(key, out Value foundValue) && foundValue.Type == typeof(T)) 222_values[key] = Value.Create(value);