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