Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Media / Animation / Generated / DiscreteKeyFrames.cs / 1305600 / DiscreteKeyFrames.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 changes from the Thickness Value of /// the previous key frame to its own Value without interpolation. The /// change occurs at the KeyTime. /// public class DiscreteThicknessKeyFrame : ThicknessKeyFrame { #region Constructors ////// Creates a new DiscreteThicknessKeyFrame. /// public DiscreteThicknessKeyFrame() : base() { } ////// Creates a new DiscreteThicknessKeyFrame. /// public DiscreteThicknessKeyFrame(Thickness value) : base(value) { } ////// Creates a new DiscreteThicknessKeyFrame. /// public DiscreteThicknessKeyFrame(Thickness value, KeyTime keyTime) : base(value, keyTime) { } #endregion #region Freezable ////// Implementation of ///Freezable.CreateInstanceCore . ///The new Freezable. protected override Freezable CreateInstanceCore() { return new DiscreteThicknessKeyFrame(); } // We don't need to override CloneCore because it won't do anything #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 < 1.0) { return baseValue; } else { return 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
- WorkflowApplicationUnhandledExceptionEventArgs.cs
- EmptyEnumerator.cs
- BasicBrowserDialog.designer.cs
- SizeKeyFrameCollection.cs
- InvalidTimeZoneException.cs
- XPathPatternBuilder.cs
- BindingValueChangedEventArgs.cs
- EncoderExceptionFallback.cs
- ExpressionServices.cs
- ExceptQueryOperator.cs
- ConnectionPoolRegistry.cs
- EngineSite.cs
- StandardCommands.cs
- SafeSerializationManager.cs
- SafeIUnknown.cs
- UriTemplate.cs
- ImageMapEventArgs.cs
- CurrentChangingEventArgs.cs
- XhtmlStyleClass.cs
- MenuItemBindingCollection.cs
- Parameter.cs
- Soap.cs
- ApplyTemplatesAction.cs
- SineEase.cs
- FamilyCollection.cs
- ReadOnlyPropertyMetadata.cs
- DirectoryNotFoundException.cs
- CodeAttributeArgumentCollection.cs
- StrictAndMessageFilter.cs
- ListBoxItemAutomationPeer.cs
- RemoteWebConfigurationHostStream.cs
- GeometryGroup.cs
- COM2ExtendedUITypeEditor.cs
- MessageQueuePermissionAttribute.cs
- WindowsEditBox.cs
- ProxyAttribute.cs
- PrintEvent.cs
- ToolStripGrip.cs
- SoapFault.cs
- NumberSubstitution.cs
- TabItemAutomationPeer.cs
- IdentityModelStringsVersion1.cs
- MappingSource.cs
- XhtmlCssHandler.cs
- WindowsUpDown.cs
- HttpCookieCollection.cs
- GCHandleCookieTable.cs
- ItemContainerProviderWrapper.cs
- DSASignatureFormatter.cs
- IndexedString.cs
- SettingsPropertyCollection.cs
- SpeechSeg.cs
- ContextStack.cs
- KnownTypes.cs
- AsyncPostBackErrorEventArgs.cs
- BaseCAMarshaler.cs
- TextPattern.cs
- HebrewNumber.cs
- HandlerFactoryCache.cs
- SemanticResolver.cs
- EventListener.cs
- OdbcError.cs
- WinFormsUtils.cs
- FormatConvertedBitmap.cs
- SafeTimerHandle.cs
- LocalizabilityAttribute.cs
- DataRowView.cs
- DataBoundControlParameterTarget.cs
- SecurityKeyIdentifier.cs
- XhtmlBasicTextBoxAdapter.cs
- WebPartManager.cs
- FileFormatException.cs
- DelegatingTypeDescriptionProvider.cs
- ExpressionBuilder.cs
- UrlMappingCollection.cs
- HierarchicalDataSourceDesigner.cs
- QilGenerator.cs
- EntityConnectionStringBuilder.cs
- FlatButtonAppearance.cs
- TextEditorCharacters.cs
- BindingManagerDataErrorEventArgs.cs
- ByteArrayHelperWithString.cs
- TreeNodeBindingCollection.cs
- InfoCardSymmetricAlgorithm.cs
- SubMenuStyleCollection.cs
- ConfigurationManagerHelperFactory.cs
- FunctionDescription.cs
- XPathDocumentNavigator.cs
- ValueHandle.cs
- WorkflowDebuggerSteppingAttribute.cs
- LogRecordSequence.cs
- BamlBinaryReader.cs
- IPipelineRuntime.cs
- ScriptHandlerFactory.cs
- StringFunctions.cs
- KnownBoxes.cs
- ManagementInstaller.cs
- CodeDOMUtility.cs
- XmlSchemaElement.cs
- DocumentViewer.cs