Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Media / Animation / Generated / EasingKeyFrames.cs / 1305600 / EasingKeyFrames.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see http://wiki/default.aspx/Microsoft.Projects.Avalon/MilCodeGen.html for more information. // //--------------------------------------------------------------------------- using MS.Internal; using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Windows.Media; using System.Windows.Media.Media3D; using MS.Internal.PresentationFramework; namespace System.Windows.Media.Animation { ////// This class is used as part of a ThicknessKeyFrameCollection in /// conjunction with a KeyFrameThicknessAnimation to animate a /// Thickness property value along a set of key frames. /// /// This ThicknessKeyFrame interpolates the between the Thickness Value of /// the previous key frame and its own Value Linearly with an EasingFunction to produce its output value. /// public partial class EasingThicknessKeyFrame : ThicknessKeyFrame { #region Constructors ////// Creates a new EasingThicknessKeyFrame. /// public EasingThicknessKeyFrame() : base() { } ////// Creates a new EasingThicknessKeyFrame. /// public EasingThicknessKeyFrame(Thickness value) : this() { Value = value; } ////// Creates a new EasingThicknessKeyFrame. /// public EasingThicknessKeyFrame(Thickness value, KeyTime keyTime) : this() { Value = value; KeyTime = keyTime; } ////// Creates a new EasingThicknessKeyFrame. /// public EasingThicknessKeyFrame(Thickness value, KeyTime keyTime, IEasingFunction easingFunction) : this() { Value = value; KeyTime = keyTime; EasingFunction = easingFunction; } #endregion #region Freezable ////// Implementation of ///Freezable.CreateInstanceCore . ///The new Freezable. protected override Freezable CreateInstanceCore() { return new EasingThicknessKeyFrame(); } #endregion #region ThicknessKeyFrame ////// Implemented to Easingly interpolate between the baseValue and the /// Value of this KeyFrame using the keyFrameProgress. /// protected override Thickness InterpolateValueCore(Thickness baseValue, double keyFrameProgress) { IEasingFunction easingFunction = EasingFunction; if (easingFunction != null) { keyFrameProgress = easingFunction.Ease(keyFrameProgress); } if (keyFrameProgress == 0.0) { return baseValue; } else if (keyFrameProgress == 1.0) { return Value; } else { return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, keyFrameProgress); } } #endregion #region Public Properties ////// EasingFunctionProperty /// public static readonly DependencyProperty EasingFunctionProperty = DependencyProperty.Register( "EasingFunction", typeof(IEasingFunction), typeof(EasingThicknessKeyFrame)); ////// EasingFunction /// public IEasingFunction EasingFunction { get { return (IEasingFunction)GetValue(EasingFunctionProperty); } set { SetValueInternal(EasingFunctionProperty, value); } } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see http://wiki/default.aspx/Microsoft.Projects.Avalon/MilCodeGen.html for more information. // //--------------------------------------------------------------------------- using MS.Internal; using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Windows.Media; using System.Windows.Media.Media3D; using MS.Internal.PresentationFramework; namespace System.Windows.Media.Animation { ////// This class is used as part of a ThicknessKeyFrameCollection in /// conjunction with a KeyFrameThicknessAnimation to animate a /// Thickness property value along a set of key frames. /// /// This ThicknessKeyFrame interpolates the between the Thickness Value of /// the previous key frame and its own Value Linearly with an EasingFunction to produce its output value. /// public partial class EasingThicknessKeyFrame : ThicknessKeyFrame { #region Constructors ////// Creates a new EasingThicknessKeyFrame. /// public EasingThicknessKeyFrame() : base() { } ////// Creates a new EasingThicknessKeyFrame. /// public EasingThicknessKeyFrame(Thickness value) : this() { Value = value; } ////// Creates a new EasingThicknessKeyFrame. /// public EasingThicknessKeyFrame(Thickness value, KeyTime keyTime) : this() { Value = value; KeyTime = keyTime; } ////// Creates a new EasingThicknessKeyFrame. /// public EasingThicknessKeyFrame(Thickness value, KeyTime keyTime, IEasingFunction easingFunction) : this() { Value = value; KeyTime = keyTime; EasingFunction = easingFunction; } #endregion #region Freezable ////// Implementation of ///Freezable.CreateInstanceCore . ///The new Freezable. protected override Freezable CreateInstanceCore() { return new EasingThicknessKeyFrame(); } #endregion #region ThicknessKeyFrame ////// Implemented to Easingly interpolate between the baseValue and the /// Value of this KeyFrame using the keyFrameProgress. /// protected override Thickness InterpolateValueCore(Thickness baseValue, double keyFrameProgress) { IEasingFunction easingFunction = EasingFunction; if (easingFunction != null) { keyFrameProgress = easingFunction.Ease(keyFrameProgress); } if (keyFrameProgress == 0.0) { return baseValue; } else if (keyFrameProgress == 1.0) { return Value; } else { return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, keyFrameProgress); } } #endregion #region Public Properties ////// EasingFunctionProperty /// public static readonly DependencyProperty EasingFunctionProperty = DependencyProperty.Register( "EasingFunction", typeof(IEasingFunction), typeof(EasingThicknessKeyFrame)); ////// EasingFunction /// public IEasingFunction EasingFunction { get { return (IEasingFunction)GetValue(EasingFunctionProperty); } set { SetValueInternal(EasingFunctionProperty, value); } } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AuthenticationSection.cs
- ZeroOpNode.cs
- XPathNavigator.cs
- OdbcEnvironmentHandle.cs
- RowsCopiedEventArgs.cs
- SingleConverter.cs
- GroupQuery.cs
- StructuredTypeEmitter.cs
- DataObjectPastingEventArgs.cs
- ParallelTimeline.cs
- DesignerUtils.cs
- Schedule.cs
- TableLayoutStyle.cs
- StylusPointDescription.cs
- UIAgentMonitor.cs
- ListSortDescription.cs
- CapabilitiesSection.cs
- Bezier.cs
- CLRBindingWorker.cs
- DropDownButton.cs
- PointHitTestResult.cs
- DataGridViewCellParsingEventArgs.cs
- WeakReference.cs
- formatter.cs
- SqlUtils.cs
- ValidationErrorInfo.cs
- BitmapCodecInfo.cs
- MultiSelectRootGridEntry.cs
- ComAdminWrapper.cs
- ServiceChannelManager.cs
- DecoderNLS.cs
- IntSecurity.cs
- MouseEventArgs.cs
- ObjectQuery_EntitySqlExtensions.cs
- SoapAttributes.cs
- Emitter.cs
- PreviewPageInfo.cs
- RoleManagerModule.cs
- CodeArrayCreateExpression.cs
- StdValidatorsAndConverters.cs
- QueueProcessor.cs
- TTSEvent.cs
- ChtmlImageAdapter.cs
- TableLayoutCellPaintEventArgs.cs
- FontStyles.cs
- SortKey.cs
- MemoryMappedViewStream.cs
- LazyLoadBehavior.cs
- Vector3DAnimationBase.cs
- _NetRes.cs
- BindingMAnagerBase.cs
- HScrollBar.cs
- securitymgrsite.cs
- Pens.cs
- XmlValidatingReader.cs
- VariableAction.cs
- PassportIdentity.cs
- XmlDictionaryWriter.cs
- VectorCollectionConverter.cs
- HyperLinkField.cs
- NameValuePair.cs
- PointLightBase.cs
- Int16.cs
- CopyAction.cs
- DoubleKeyFrameCollection.cs
- ButtonRenderer.cs
- ConstantSlot.cs
- ListenerConnectionDemuxer.cs
- SafeArrayRankMismatchException.cs
- WindowsFormsHost.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- ListDictionary.cs
- Tuple.cs
- DetailsViewRow.cs
- CatalogZone.cs
- XmlArrayItemAttributes.cs
- DummyDataSource.cs
- Verify.cs
- _NegoStream.cs
- PersonalizationProviderHelper.cs
- XsltQilFactory.cs
- EventRecordWrittenEventArgs.cs
- Keyboard.cs
- _NegoState.cs
- ToolStripLocationCancelEventArgs.cs
- GrowingArray.cs
- DataControlField.cs
- ComponentEditorPage.cs
- XmlAttributeProperties.cs
- Mapping.cs
- FragmentNavigationEventArgs.cs
- NotFiniteNumberException.cs
- RegisteredDisposeScript.cs
- TraceFilter.cs
- BehaviorEditorPart.cs
- ReceiveActivityDesignerTheme.cs
- ExcCanonicalXml.cs
- SimpleMailWebEventProvider.cs
- C14NUtil.cs
- HyperLinkField.cs