当前位置: 首页>>代码示例>>C#>>正文


C# Animation.KeyTime类代码示例

本文整理汇总了C#中System.Windows.Media.Animation.KeyTime的典型用法代码示例。如果您正苦于以下问题:C# KeyTime类的具体用法?C# KeyTime怎么用?C# KeyTime使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


KeyTime类属于System.Windows.Media.Animation命名空间,在下文中一共展示了KeyTime类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: EasingByteKeyFrame

 /// <summary>
 /// Creates a new EasingByteKeyFrame.
 /// </summary>
 public EasingByteKeyFrame(Byte value, KeyTime keyTime, IEasingFunction easingFunction)
     : this()
 {
     Value = value;
     KeyTime = keyTime;
     EasingFunction = easingFunction;
 }
开发者ID:nlh774,项目名称:DotNetReferenceSource,代码行数:10,代码来源:EasingKeyFrames.cs

示例2: EasingThicknessKeyFrame

 /// <summary>
 /// Creates a new EasingThicknessKeyFrame.
 /// </summary>
 public EasingThicknessKeyFrame(Thickness value, KeyTime keyTime, IEasingFunction easingFunction)
     : this()
 {
     Value = value;
     KeyTime = keyTime;
     EasingFunction = easingFunction;
 }
开发者ID:nlh774,项目名称:DotNetReferenceSource,代码行数:10,代码来源:EasingKeyFrames.cs

示例3: SplineByteKeyFrame

        /// <summary>
        /// Creates a new SplineByteKeyFrame.
        /// </summary>
        public SplineByteKeyFrame(Byte value, KeyTime keyTime, KeySpline keySpline)
            : this()
        {
            if (keySpline == null)
            {
                throw new ArgumentNullException("keySpline");
            }

            Value = value;
            KeyTime = keyTime;
            KeySpline = keySpline;
        }
开发者ID:nlh774,项目名称:DotNetReferenceSource,代码行数:15,代码来源:SplineKeyFrames.cs

示例4: Rotation3DKeyFrame

 protected Rotation3DKeyFrame(System.Windows.Media.Media3D.Rotation3D value, KeyTime keyTime)
 {
 }
开发者ID:asvishnyakov,项目名称:CodeContracts,代码行数:3,代码来源:System.Windows.Media.Animation.Rotation3DKeyFrame.cs

示例5: DiscreteInt64KeyFrame

 public DiscreteInt64KeyFrame(long value, KeyTime keyTime)
 {
 }
开发者ID:asvishnyakov,项目名称:CodeContracts,代码行数:3,代码来源:System.Windows.Media.Animation.DiscreteInt64KeyFrame.cs

示例6: DiscretePoint3DKeyFrame

 public DiscretePoint3DKeyFrame(System.Windows.Media.Media3D.Point3D value, KeyTime keyTime)
 {
 }
开发者ID:asvishnyakov,项目名称:CodeContracts,代码行数:3,代码来源:System.Windows.Media.Animation.DiscretePoint3DKeyFrame.cs

示例7: DiscreteColorKeyFrame

	public DiscreteColorKeyFrame (Color value, KeyTime keyTime)
	{
		this.value = value;
		this.keyTime = keyTime;
	}
开发者ID:alesliehughes,项目名称:olive,代码行数:5,代码来源:DiscreteColorKeyFrame.cs

示例8: LinearByteKeyFrame

 public LinearByteKeyFrame(byte value, KeyTime keyTime)
 {
 }
开发者ID:asvishnyakov,项目名称:CodeContracts,代码行数:3,代码来源:System.Windows.Media.Animation.LinearByteKeyFrame.cs

示例9: SplineRectKeyFrame

 public SplineRectKeyFrame(System.Windows.Rect value, KeyTime keyTime, KeySpline keySpline)
 {
 }
开发者ID:asvishnyakov,项目名称:CodeContracts,代码行数:3,代码来源:System.Windows.Media.Animation.SplineRectKeyFrame.cs

示例10: DiscreteObjectKeyFrame

 public DiscreteObjectKeyFrame(Object value, KeyTime keyTime)
 {
 }
开发者ID:asvishnyakov,项目名称:CodeContracts,代码行数:3,代码来源:System.Windows.Media.Animation.DiscreteObjectKeyFrame.cs

示例11: SingleKeyFrame

 protected SingleKeyFrame(float value, KeyTime keyTime)
 {
 }
开发者ID:asvishnyakov,项目名称:CodeContracts,代码行数:3,代码来源:System.Windows.Media.Animation.SingleKeyFrame.cs

示例12: DoubleKeyFrame

 protected DoubleKeyFrame(double value, KeyTime keyTime)
 {
 }
开发者ID:asvishnyakov,项目名称:CodeContracts,代码行数:3,代码来源:System.Windows.Media.Animation.DoubleKeyFrame.cs

示例13: SplineVectorKeyFrame

 public SplineVectorKeyFrame(System.Windows.Vector value, KeyTime keyTime, KeySpline keySpline)
 {
 }
开发者ID:asvishnyakov,项目名称:CodeContracts,代码行数:3,代码来源:System.Windows.Media.Animation.SplineVectorKeyFrame.cs

示例14: DiscretePoint3DKeyFrame

 /// <summary>
 /// Creates a new DiscretePoint3DKeyFrame.
 /// </summary>
 public DiscretePoint3DKeyFrame(Point3D value, KeyTime keyTime)
     : base(value, keyTime)
 {
 }
开发者ID:krytht,项目名称:DotNetReferenceSource,代码行数:7,代码来源:DiscreteKeyFrames.cs

示例15: DiscreteMatrixKeyFrame

 /// <summary>
 /// Creates a new DiscreteMatrixKeyFrame.
 /// </summary>
 public DiscreteMatrixKeyFrame(Matrix value, KeyTime keyTime)
     : base(value, keyTime)
 {
 }
开发者ID:krytht,项目名称:DotNetReferenceSource,代码行数:7,代码来源:DiscreteKeyFrames.cs


注:本文中的System.Windows.Media.Animation.KeyTime类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。