Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextFormatterContext.cs
- tabpagecollectioneditor.cs
- DeviceSpecificDesigner.cs
- RadioButton.cs
- CommonGetThemePartSize.cs
- ListView.cs
- SoapAttributeAttribute.cs
- DynamicILGenerator.cs
- OwnerDrawPropertyBag.cs
- SelectionRange.cs
- PrivilegedConfigurationManager.cs
- CustomAttribute.cs
- FeatureSupport.cs
- WorkflowApplicationTerminatedException.cs
- TimelineCollection.cs
- WebPartConnectionsCancelVerb.cs
- SystemPens.cs
- ConfigUtil.cs
- SQLSingleStorage.cs
- XDeferredAxisSource.cs
- DescendantQuery.cs
- OrCondition.cs
- HttpDictionary.cs
- SQLSingleStorage.cs
- CompositeActivityTypeDescriptor.cs
- BrowsableAttribute.cs
- ProfileManager.cs
- UnsettableComboBox.cs
- ComponentDispatcher.cs
- Root.cs
- MobileUserControl.cs
- TiffBitmapEncoder.cs
- TableLayoutPanel.cs
- userdatakeys.cs
- Events.cs
- EntityStoreSchemaFilterEntry.cs
- AxisAngleRotation3D.cs
- SQLInt16.cs
- SQLString.cs
- xml.cs
- PeerNameRecord.cs
- ClientUrlResolverWrapper.cs
- CollectionChangeEventArgs.cs
- TransactionContextManager.cs
- ResourceDictionaryCollection.cs
- RepeatBehavior.cs
- KeyEvent.cs
- XmlImplementation.cs
- ContextProperty.cs
- SessionEndingCancelEventArgs.cs
- BypassElementCollection.cs
- SerializerWriterEventHandlers.cs
- ObjectStateEntry.cs
- HtmlInputReset.cs
- ErrorRuntimeConfig.cs
- BooleanAnimationBase.cs
- UiaCoreTypesApi.cs
- OutputChannelBinder.cs
- TraceSection.cs
- DataGridViewImageColumn.cs
- Guid.cs
- MessagePropertyAttribute.cs
- TraceLevelStore.cs
- AddingNewEventArgs.cs
- Listbox.cs
- PolyQuadraticBezierSegment.cs
- ToolStripGrip.cs
- LambdaCompiler.Binary.cs
- LiteralControl.cs
- DbProviderConfigurationHandler.cs
- ImageSource.cs
- TagMapInfo.cs
- CornerRadiusConverter.cs
- Math.cs
- SocketAddress.cs
- SafeRightsManagementHandle.cs
- XsltLibrary.cs
- SessionStateSection.cs
- Debug.cs
- HttpRuntimeSection.cs
- DataGridViewAutoSizeModeEventArgs.cs
- CodeCommentStatementCollection.cs
- LayoutSettings.cs
- UnsafeMethods.cs
- BaseTemplateCodeDomTreeGenerator.cs
- OptimisticConcurrencyException.cs
- _SSPISessionCache.cs
- IRCollection.cs
- ToolTipService.cs
- QueryFunctions.cs
- CompilationLock.cs
- MenuEventArgs.cs
- InvalidAsynchronousStateException.cs
- XmlElementAttribute.cs
- CssStyleCollection.cs
- NotificationContext.cs
- FontFamilyConverter.cs
- FixedLineResult.cs
- ThicknessAnimationUsingKeyFrames.cs
- HttpApplicationStateWrapper.cs