Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Media / Animation / Generated / LinearKeyFrames.cs / 1305600 / LinearKeyFrames.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 to produce its output value. /// public partial class LinearThicknessKeyFrame : ThicknessKeyFrame { #region Constructors ////// Creates a new LinearThicknessKeyFrame. /// public LinearThicknessKeyFrame() : base() { } ////// Creates a new LinearThicknessKeyFrame. /// public LinearThicknessKeyFrame(Thickness value) : base(value) { } ////// Creates a new LinearThicknessKeyFrame. /// public LinearThicknessKeyFrame(Thickness value, KeyTime keyTime) : base(value, keyTime) { } #endregion #region Freezable ////// Implementation of ///Freezable.CreateInstanceCore . ///The new Freezable. protected override Freezable CreateInstanceCore() { return new LinearThicknessKeyFrame(); } #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 { return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, 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
- HttpListenerResponse.cs
- AudioBase.cs
- FullTrustAssembly.cs
- XmlCountingReader.cs
- ComplexPropertyEntry.cs
- SafeProcessHandle.cs
- DispatcherExceptionFilterEventArgs.cs
- ToolStripSettings.cs
- ToolStripDesignerAvailabilityAttribute.cs
- WrapPanel.cs
- SelectedGridItemChangedEvent.cs
- AssemblyAttributesGoHere.cs
- CodeCommentStatementCollection.cs
- WindowsStartMenu.cs
- ValueExpressions.cs
- RegexRunnerFactory.cs
- SQLRoleProvider.cs
- DataGridViewElement.cs
- XhtmlBasicPanelAdapter.cs
- SettingsSavedEventArgs.cs
- CheckBoxAutomationPeer.cs
- AsyncContentLoadedEventArgs.cs
- NativeMethods.cs
- PromptStyle.cs
- XPathConvert.cs
- AppDomainInfo.cs
- TextEvent.cs
- HtmlGenericControl.cs
- CopyEncoder.cs
- BamlResourceDeserializer.cs
- SafeFreeMibTable.cs
- DirectoryNotFoundException.cs
- DataGridColumnCollection.cs
- ObjectDataSourceDisposingEventArgs.cs
- Block.cs
- ToolboxComponentsCreatedEventArgs.cs
- BreadCrumbTextConverter.cs
- columnmapfactory.cs
- TextEditorMouse.cs
- ContentOperations.cs
- AxHost.cs
- FileLevelControlBuilderAttribute.cs
- Point4DValueSerializer.cs
- SmiXetterAccessMap.cs
- CompositeFontFamily.cs
- TextEndOfParagraph.cs
- RemotingServices.cs
- PropertyPath.cs
- ScriptResourceAttribute.cs
- SmiGettersStream.cs
- XPathException.cs
- XmlSchemaImport.cs
- Decorator.cs
- ProcessHostServerConfig.cs
- UrlMappingsModule.cs
- MsmqActivation.cs
- BufferedOutputAsyncStream.cs
- KnownColorTable.cs
- TableCell.cs
- AuthenticationService.cs
- EditingMode.cs
- Vector3DKeyFrameCollection.cs
- BlockingCollection.cs
- TimeSpanStorage.cs
- XmlNamespaceDeclarationsAttribute.cs
- MethodCallConverter.cs
- COM2IDispatchConverter.cs
- ConfigurationElementProperty.cs
- HtmlUtf8RawTextWriter.cs
- ExceptionHandlers.cs
- ParameterExpression.cs
- PowerEase.cs
- SystemTcpConnection.cs
- DataGridPagerStyle.cs
- PriorityQueue.cs
- SqlRowUpdatingEvent.cs
- Polyline.cs
- BitmapMetadataBlob.cs
- WmlPhoneCallAdapter.cs
- CatalogZone.cs
- MetafileHeaderEmf.cs
- followingsibling.cs
- ErasingStroke.cs
- HandleValueEditor.cs
- SymLanguageType.cs
- ScrollContentPresenter.cs
- UnrecognizedAssertionsBindingElement.cs
- XmlILStorageConverter.cs
- LookupNode.cs
- WorkerRequest.cs
- CfgParser.cs
- ComponentDispatcher.cs
- HttpProcessUtility.cs
- CannotUnloadAppDomainException.cs
- RowTypePropertyElement.cs
- InvalidPrinterException.cs
- BitmapEffect.cs
- DataStreamFromComStream.cs
- BufferModeSettings.cs
- TextDecorationCollectionConverter.cs