6 writes to _keyFrames
PresentationFramework (6)
System\Windows\Media\Animation\Generated\ThicknessKeyFrameCollection.cs (6)
37
_keyFrames
= new List< ThicknessKeyFrame>(2);
55
emptyCollection.
_keyFrames
= new List< ThicknessKeyFrame>(0);
97
_keyFrames
= new List< ThicknessKeyFrame>(count);
118
_keyFrames
= new List< ThicknessKeyFrame>(count);
139
_keyFrames
= new List< ThicknessKeyFrame>(count);
160
_keyFrames
= new List< ThicknessKeyFrame>(count);
37 references to _keyFrames
PresentationFramework (37)
System\Windows\Media\Animation\Generated\ThicknessKeyFrameCollection.cs (37)
95
int count = sourceCollection.
_keyFrames
.Count;
101
ThicknessKeyFrame keyFrame = (ThicknessKeyFrame)sourceCollection.
_keyFrames
[i].Clone();
102
_keyFrames
.Add(keyFrame);
116
int count = sourceCollection.
_keyFrames
.Count;
122
ThicknessKeyFrame keyFrame = (ThicknessKeyFrame)sourceCollection.
_keyFrames
[i].CloneCurrentValue();
123
_keyFrames
.Add(keyFrame);
137
int count = sourceCollection.
_keyFrames
.Count;
143
ThicknessKeyFrame keyFrame = (ThicknessKeyFrame)sourceCollection.
_keyFrames
[i].GetAsFrozen();
144
_keyFrames
.Add(keyFrame);
158
int count = sourceCollection.
_keyFrames
.Count;
164
ThicknessKeyFrame keyFrame = (ThicknessKeyFrame)sourceCollection.
_keyFrames
[i].GetCurrentValueAsFrozen();
165
_keyFrames
.Add(keyFrame);
177
for (int i = 0; i <
_keyFrames
.Count && canFreeze; i++)
179
canFreeze &= Freezable.Freeze(
_keyFrames
[i], isChecking);
196
return
_keyFrames
.GetEnumerator();
212
return
_keyFrames
.Count;
238
return ((ICollection)
_keyFrames
).SyncRoot;
250
((ICollection)
_keyFrames
).CopyTo(array, index);
261
_keyFrames
.CopyTo(array, index);
286
_keyFrames
.Add(keyFrame);
290
return
_keyFrames
.Count - 1;
300
if (
_keyFrames
.Count > 0)
302
for (int i = 0; i <
_keyFrames
.Count; i++)
304
OnFreezablePropertyChanged(
_keyFrames
[i], null);
307
_keyFrames
.Clear();
328
return
_keyFrames
.Contains(keyFrame);
346
return
_keyFrames
.IndexOf(keyFrame);
367
_keyFrames
.Insert(index, keyFrame);
413
if (
_keyFrames
.Contains(keyFrame))
416
_keyFrames
.Remove(keyFrame);
429
OnFreezablePropertyChanged(
_keyFrames
[index], null);
430
_keyFrames
.RemoveAt(index);
459
return
_keyFrames
[index];
470
if (value !=
_keyFrames
[index])
472
OnFreezablePropertyChanged(
_keyFrames
[index], value);
473
_keyFrames
[index] = value;
475
Debug.Assert(
_keyFrames
[index] != null);