6 writes to _keyFrames
PresentationFramework (6)
System\Windows\Media\Animation\Generated\ThicknessKeyFrameCollection.cs (6)
45
_keyFrames
= new List< ThicknessKeyFrame>(2);
63
emptyCollection.
_keyFrames
= new List< ThicknessKeyFrame>(0);
105
_keyFrames
= new List< ThicknessKeyFrame>(count);
126
_keyFrames
= new List< ThicknessKeyFrame>(count);
147
_keyFrames
= new List< ThicknessKeyFrame>(count);
168
_keyFrames
= new List< ThicknessKeyFrame>(count);
37 references to _keyFrames
PresentationFramework (37)
System\Windows\Media\Animation\Generated\ThicknessKeyFrameCollection.cs (37)
103
int count = sourceCollection.
_keyFrames
.Count;
109
ThicknessKeyFrame keyFrame = (ThicknessKeyFrame)sourceCollection.
_keyFrames
[i].Clone();
110
_keyFrames
.Add(keyFrame);
124
int count = sourceCollection.
_keyFrames
.Count;
130
ThicknessKeyFrame keyFrame = (ThicknessKeyFrame)sourceCollection.
_keyFrames
[i].CloneCurrentValue();
131
_keyFrames
.Add(keyFrame);
145
int count = sourceCollection.
_keyFrames
.Count;
151
ThicknessKeyFrame keyFrame = (ThicknessKeyFrame)sourceCollection.
_keyFrames
[i].GetAsFrozen();
152
_keyFrames
.Add(keyFrame);
166
int count = sourceCollection.
_keyFrames
.Count;
172
ThicknessKeyFrame keyFrame = (ThicknessKeyFrame)sourceCollection.
_keyFrames
[i].GetCurrentValueAsFrozen();
173
_keyFrames
.Add(keyFrame);
185
for (int i = 0; i <
_keyFrames
.Count && canFreeze; i++)
187
canFreeze &= Freezable.Freeze(
_keyFrames
[i], isChecking);
204
return
_keyFrames
.GetEnumerator();
220
return
_keyFrames
.Count;
246
return ((ICollection)
_keyFrames
).SyncRoot;
258
((ICollection)
_keyFrames
).CopyTo(array, index);
269
_keyFrames
.CopyTo(array, index);
294
_keyFrames
.Add(keyFrame);
298
return
_keyFrames
.Count - 1;
308
if (
_keyFrames
.Count > 0)
310
for (int i = 0; i <
_keyFrames
.Count; i++)
312
OnFreezablePropertyChanged(
_keyFrames
[i], null);
315
_keyFrames
.Clear();
336
return
_keyFrames
.Contains(keyFrame);
354
return
_keyFrames
.IndexOf(keyFrame);
375
_keyFrames
.Insert(index, keyFrame);
421
if (
_keyFrames
.Contains(keyFrame))
424
_keyFrames
.Remove(keyFrame);
437
OnFreezablePropertyChanged(
_keyFrames
[index], null);
438
_keyFrames
.RemoveAt(index);
467
return
_keyFrames
[index];
478
if (value !=
_keyFrames
[index])
480
OnFreezablePropertyChanged(
_keyFrames
[index], value);
481
_keyFrames
[index] = value;
483
Debug.Assert(
_keyFrames
[index] != null);