Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Media / Animation / Generated / SplineKeyFrames.cs / 1 / SplineKeyFrames.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 between the Thickness Value of /// the previous key frame and its own Value to produce its output value. /// public partial class SplineThicknessKeyFrame : ThicknessKeyFrame { #region Constructors ////// Creates a new SplineThicknessKeyFrame. /// public SplineThicknessKeyFrame() : base() { } ////// Creates a new SplineThicknessKeyFrame. /// public SplineThicknessKeyFrame(Thickness value) : this() { Value = value; } ////// Creates a new SplineThicknessKeyFrame. /// public SplineThicknessKeyFrame(Thickness value, KeyTime keyTime) : this() { Value = value; KeyTime = keyTime; } ////// Creates a new SplineThicknessKeyFrame. /// public SplineThicknessKeyFrame(Thickness value, KeyTime keyTime, KeySpline keySpline) : this() { if (keySpline == null) { throw new ArgumentNullException("keySpline"); } Value = value; KeyTime = keyTime; KeySpline = keySpline; } #endregion #region Freezable ////// Implementation of ///Freezable.CreateInstanceCore . ///The new Freezable. protected override Freezable CreateInstanceCore() { return new SplineThicknessKeyFrame(); } #endregion #region ThicknessKeyFrame ////// Implemented to linearly interpolate between the baseValue and the /// Value of this KeyFrame using the keyFrameProgress. /// protected override Thickness InterpolateValueCore(Thickness baseValue, double keyFrameProgress) { if (keyFrameProgress == 0.0) { return baseValue; } else if (keyFrameProgress == 1.0) { return Value; } else { double splineProgress = KeySpline.GetSplineProgress(keyFrameProgress); return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, splineProgress); } } #endregion #region Public Properties ////// KeySpline Property /// public static readonly DependencyProperty KeySplineProperty = DependencyProperty.Register( "KeySpline", typeof(KeySpline), typeof(SplineThicknessKeyFrame), new PropertyMetadata(new KeySpline())); ////// The KeySpline defines the way that progress will be altered for this /// key frame. /// public KeySpline KeySpline { get { return (KeySpline)GetValue(KeySplineProperty); } set { if (value == null) { throw new ArgumentNullException("value"); } SetValue(KeySplineProperty, 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 between the Thickness Value of /// the previous key frame and its own Value to produce its output value. /// public partial class SplineThicknessKeyFrame : ThicknessKeyFrame { #region Constructors ////// Creates a new SplineThicknessKeyFrame. /// public SplineThicknessKeyFrame() : base() { } ////// Creates a new SplineThicknessKeyFrame. /// public SplineThicknessKeyFrame(Thickness value) : this() { Value = value; } ////// Creates a new SplineThicknessKeyFrame. /// public SplineThicknessKeyFrame(Thickness value, KeyTime keyTime) : this() { Value = value; KeyTime = keyTime; } ////// Creates a new SplineThicknessKeyFrame. /// public SplineThicknessKeyFrame(Thickness value, KeyTime keyTime, KeySpline keySpline) : this() { if (keySpline == null) { throw new ArgumentNullException("keySpline"); } Value = value; KeyTime = keyTime; KeySpline = keySpline; } #endregion #region Freezable ////// Implementation of ///Freezable.CreateInstanceCore . ///The new Freezable. protected override Freezable CreateInstanceCore() { return new SplineThicknessKeyFrame(); } #endregion #region ThicknessKeyFrame ////// Implemented to linearly interpolate between the baseValue and the /// Value of this KeyFrame using the keyFrameProgress. /// protected override Thickness InterpolateValueCore(Thickness baseValue, double keyFrameProgress) { if (keyFrameProgress == 0.0) { return baseValue; } else if (keyFrameProgress == 1.0) { return Value; } else { double splineProgress = KeySpline.GetSplineProgress(keyFrameProgress); return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, splineProgress); } } #endregion #region Public Properties ////// KeySpline Property /// public static readonly DependencyProperty KeySplineProperty = DependencyProperty.Register( "KeySpline", typeof(KeySpline), typeof(SplineThicknessKeyFrame), new PropertyMetadata(new KeySpline())); ////// The KeySpline defines the way that progress will be altered for this /// key frame. /// public KeySpline KeySpline { get { return (KeySpline)GetValue(KeySplineProperty); } set { if (value == null) { throw new ArgumentNullException("value"); } SetValue(KeySplineProperty, 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
- XD.cs
- CounterSampleCalculator.cs
- SignerInfo.cs
- TableColumn.cs
- CapiSafeHandles.cs
- GridViewAutomationPeer.cs
- ToolStripContentPanel.cs
- Win32SafeHandles.cs
- PackageFilter.cs
- LinearQuaternionKeyFrame.cs
- ComponentSerializationService.cs
- SHA512.cs
- _SpnDictionary.cs
- XsltLoader.cs
- DataGridSortCommandEventArgs.cs
- UInt16Converter.cs
- SqlTypesSchemaImporter.cs
- MarshalByValueComponent.cs
- XmlElementElement.cs
- QueryStringParameter.cs
- PaintEvent.cs
- SafeProcessHandle.cs
- QilBinary.cs
- OdbcStatementHandle.cs
- ThaiBuddhistCalendar.cs
- SafeProcessHandle.cs
- GridItem.cs
- SqlDesignerDataSourceView.cs
- XmlnsCache.cs
- Utilities.cs
- MessageSecurityException.cs
- ToolStripComboBox.cs
- AuthenticationModulesSection.cs
- OleDragDropHandler.cs
- DesignTimeTemplateParser.cs
- XmlChildEnumerator.cs
- BulletedList.cs
- CaseExpr.cs
- TraceHandlerErrorFormatter.cs
- ContextMenu.cs
- PointCollection.cs
- HttpVersion.cs
- ExpressionPrefixAttribute.cs
- SR.cs
- ServiceDesigner.cs
- TraceData.cs
- XmlMapping.cs
- SQLResource.cs
- ConfigsHelper.cs
- WebPartDisplayModeEventArgs.cs
- TrimSurroundingWhitespaceAttribute.cs
- PositiveTimeSpanValidatorAttribute.cs
- UrlAuthFailureHandler.cs
- TextContainerChangeEventArgs.cs
- WebPageTraceListener.cs
- DataTableMappingCollection.cs
- WebConfigurationManager.cs
- LineGeometry.cs
- CacheHelper.cs
- TokenBasedSet.cs
- RC2.cs
- FrameworkObject.cs
- ProxySimple.cs
- OleDbException.cs
- WebPartsSection.cs
- BindingOperations.cs
- ContextInformation.cs
- BuildManagerHost.cs
- OutputCacheSettings.cs
- FilterFactory.cs
- InvalidFilterCriteriaException.cs
- FindRequestContext.cs
- HyperLink.cs
- UIElementAutomationPeer.cs
- GridPatternIdentifiers.cs
- SymDocumentType.cs
- SerializationInfoEnumerator.cs
- TdsParserSessionPool.cs
- MaterialGroup.cs
- ComContractElementCollection.cs
- Transactions.cs
- DecimalAnimationUsingKeyFrames.cs
- AutomationPatternInfo.cs
- CompilationPass2TaskInternal.cs
- SymmetricAlgorithm.cs
- LocalizableAttribute.cs
- ButtonBaseAdapter.cs
- AppDomainProtocolHandler.cs
- VoiceInfo.cs
- SqlRowUpdatedEvent.cs
- ClassHandlersStore.cs
- DiscoveryReference.cs
- PropertyValueUIItem.cs
- Byte.cs
- SqlComparer.cs
- FormClosedEvent.cs
- ValidationHelpers.cs
- ApplicationCommands.cs
- IncrementalReadDecoders.cs
- HtmlElement.cs