Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Media / Animation / Generated / KeyFrames.cs / 1305600 / KeyFrames.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. /// public abstract class ThicknessKeyFrame : Freezable, IKeyFrame { #region Constructors ////// Creates a new ThicknessKeyFrame. /// protected ThicknessKeyFrame() : base() { } ////// Creates a new ThicknessKeyFrame. /// protected ThicknessKeyFrame(Thickness value) : this() { Value = value; } ////// Creates a new DiscreteThicknessKeyFrame. /// protected ThicknessKeyFrame(Thickness value, KeyTime keyTime) : this() { Value = value; KeyTime = keyTime; } #endregion #region IKeyFrame ////// KeyTime Property /// public static readonly DependencyProperty KeyTimeProperty = DependencyProperty.Register( "KeyTime", typeof(KeyTime), typeof(ThicknessKeyFrame), new PropertyMetadata(KeyTime.Uniform)); ////// The time at which this KeyFrame's value should be equal to the Value /// property. /// public KeyTime KeyTime { get { return (KeyTime)GetValue(KeyTimeProperty); } set { SetValueInternal(KeyTimeProperty, value); } } ////// Value Property /// public static readonly DependencyProperty ValueProperty = DependencyProperty.Register( "Value", typeof(Thickness), typeof(ThicknessKeyFrame), new PropertyMetadata()); ////// The value of this key frame at the KeyTime specified. /// object IKeyFrame.Value { get { return Value; } set { Value = (Thickness)value; } } ////// The value of this key frame at the KeyTime specified. /// public Thickness Value { get { return (Thickness)GetValue(ValueProperty); } set { SetValueInternal(ValueProperty, value); } } #endregion #region Public Methods ////// Gets the interpolated value of the key frame at the progress value /// provided. The progress value should be calculated in terms of this /// specific key frame. /// public Thickness InterpolateValue( Thickness baseValue, double keyFrameProgress) { if ( keyFrameProgress < 0.0 || keyFrameProgress > 1.0) { throw new ArgumentOutOfRangeException("keyFrameProgress"); } return InterpolateValueCore(baseValue, keyFrameProgress); } #endregion #region Protected Methods ////// This method should be implemented by derived classes to calculate /// the value of this key frame at the progress value provided. /// protected abstract Thickness InterpolateValueCore( Thickness baseValue, double keyFrameProgress); #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
- SharedConnectionInfo.cs
- ImageDrawing.cs
- safex509handles.cs
- SymLanguageType.cs
- DetailsViewPageEventArgs.cs
- StylesEditorDialog.cs
- XmlDownloadManager.cs
- FilteredXmlReader.cs
- SerializerProvider.cs
- CodeArrayCreateExpression.cs
- ElapsedEventArgs.cs
- TagPrefixCollection.cs
- ThreadNeutralSemaphore.cs
- BufferedGraphics.cs
- PropertyChangedEventArgs.cs
- CompositeControl.cs
- SystemIcons.cs
- XmlUrlResolver.cs
- SqlDependencyListener.cs
- AlgoModule.cs
- ColorEditor.cs
- Oci.cs
- DataSetViewSchema.cs
- RoutedUICommand.cs
- SerializeAbsoluteContext.cs
- WCFModelStrings.Designer.cs
- BindingContext.cs
- ExpressionBinding.cs
- Group.cs
- XmlSchemaInferenceException.cs
- StorageAssociationTypeMapping.cs
- StyleXamlParser.cs
- GifBitmapDecoder.cs
- CultureInfoConverter.cs
- GiveFeedbackEventArgs.cs
- MetadataArtifactLoader.cs
- WebPartActionVerb.cs
- ForeignConstraint.cs
- AlternationConverter.cs
- SerializationException.cs
- GridViewCommandEventArgs.cs
- PagerSettings.cs
- HtmlInputCheckBox.cs
- SecureEnvironment.cs
- ZipIOBlockManager.cs
- Registry.cs
- SqlConnectionString.cs
- LayoutEditorPart.cs
- DesignBindingEditor.cs
- DataRowCollection.cs
- KernelTypeValidation.cs
- SoapRpcMethodAttribute.cs
- HMACSHA1.cs
- XmlDeclaration.cs
- ReadWriteObjectLock.cs
- TransformProviderWrapper.cs
- FrameworkPropertyMetadata.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- Pen.cs
- KeyboardNavigation.cs
- SvcMapFileSerializer.cs
- SoapCommonClasses.cs
- EventProviderBase.cs
- FusionWrap.cs
- WaitHandleCannotBeOpenedException.cs
- VoiceInfo.cs
- SqlCachedBuffer.cs
- Pkcs7Recipient.cs
- NavigationCommands.cs
- ValidationRuleCollection.cs
- StringDictionaryCodeDomSerializer.cs
- WaitHandleCannotBeOpenedException.cs
- XmlReflectionImporter.cs
- RectValueSerializer.cs
- ModelPerspective.cs
- ProxyWebPart.cs
- CheckBoxPopupAdapter.cs
- Region.cs
- SweepDirectionValidation.cs
- TableCellAutomationPeer.cs
- PrimitiveXmlSerializers.cs
- OutputCacheEntry.cs
- ListViewDataItem.cs
- SecondaryViewProvider.cs
- SqlProviderManifest.cs
- TreeViewCancelEvent.cs
- RequestQueue.cs
- MsdtcClusterUtils.cs
- HostedNamedPipeTransportManager.cs
- TabControlEvent.cs
- XmlUtf8RawTextWriter.cs
- DeploymentExceptionMapper.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- Drawing.cs
- IndentedWriter.cs
- TableRow.cs
- MenuBase.cs
- Base64Stream.cs
- ToolStripSettings.cs
- PeerTransportListenAddressConverter.cs