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