4 types derived from Point3DKeyFrame
PresentationCore (4)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
949
public class DiscretePoint3DKeyFrame :
Point3DKeyFrame
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (1)
1036
public partial class EasingPoint3DKeyFrame :
Point3DKeyFrame
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (1)
652
public partial class LinearPoint3DKeyFrame :
Point3DKeyFrame
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (1)
1100
public partial class SplinePoint3DKeyFrame :
Point3DKeyFrame
36 references to Point3DKeyFrame
PresentationCore (33)
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (2)
1803
typeof(
Point3DKeyFrame
),
1829
typeof(
Point3DKeyFrame
),
Core\CSharp\System\Windows\Media\Animation\Generated\Point3DAnimationUsingKeyFrames.cs (3)
235
Point3DKeyFrame
keyFrame = child as
Point3DKeyFrame
;
650
private
Point3DKeyFrame
GetResolvedKeyFrame(Int32 resolvedKeyFrameIndex)
Core\CSharp\System\Windows\Media\Animation\Generated\Point3DKeyFrameCollection.cs (28)
34
private List<
Point3DKeyFrame
> _keyFrames;
47
_keyFrames = new List<
Point3DKeyFrame
>(2);
65
emptyCollection._keyFrames = new List<
Point3DKeyFrame
>(0);
107
_keyFrames = new List<
Point3DKeyFrame
>(count);
111
Point3DKeyFrame
keyFrame = (
Point3DKeyFrame
)sourceCollection._keyFrames[i].Clone();
128
_keyFrames = new List<
Point3DKeyFrame
>(count);
132
Point3DKeyFrame
keyFrame = (
Point3DKeyFrame
)sourceCollection._keyFrames[i].CloneCurrentValue();
149
_keyFrames = new List<
Point3DKeyFrame
>(count);
153
Point3DKeyFrame
keyFrame = (
Point3DKeyFrame
)sourceCollection._keyFrames[i].GetAsFrozen();
170
_keyFrames = new List<
Point3DKeyFrame
>(count);
174
Point3DKeyFrame
keyFrame = (
Point3DKeyFrame
)sourceCollection._keyFrames[i].GetCurrentValueAsFrozen();
267
public void CopyTo(
Point3DKeyFrame
[] array, int index)
283
return Add((
Point3DKeyFrame
)keyFrame);
289
public int Add(
Point3DKeyFrame
keyFrame)
331
return Contains((
Point3DKeyFrame
)keyFrame);
337
public bool Contains(
Point3DKeyFrame
keyFrame)
349
return IndexOf((
Point3DKeyFrame
)keyFrame);
355
public int IndexOf(
Point3DKeyFrame
keyFrame)
367
Insert(index, (
Point3DKeyFrame
)keyFrame);
373
public void Insert(int index,
Point3DKeyFrame
keyFrame)
419
Remove((
Point3DKeyFrame
)keyFrame);
425
public void Remove(
Point3DKeyFrame
keyFrame)
462
this[index] = (
Point3DKeyFrame
)value;
469
public
Point3DKeyFrame
this[int index]
PresentationFramework (3)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
556
case 464: t = () => typeof(
Point3DKeyFrame
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7620
typeof(System.Windows.Media.Animation.
Point3DKeyFrame
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6008
case KnownElements.Point3DKeyFrame: t = typeof(System.Windows.Media.Animation.
Point3DKeyFrame
); break;