Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Animation / Generated / DoubleAnimationClockResource.cs / 1305600 / DoubleAnimationClockResource.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 System; using System.Windows; using System.Windows.Media; using System.Windows.Media.Composition; using System.Diagnostics; using System.Runtime.InteropServices; using System.Security; namespace System.Windows.Media.Animation { ////// DoubleAnimationClockResource class. /// AnimationClockResource classes refer to an AnimationClock and a base /// value. They implement DUCE.IResource, and thus can be used to produce /// a render-side resource which represents the current value of this /// AnimationClock. /// They subscribe to the Changed event on the AnimationClock and ensure /// that the resource's current value is up to date. /// internal class DoubleAnimationClockResource: AnimationClockResource, DUCE.IResource { ////// Constructor for public DoubleAnimationClockResource. /// This constructor accepts the base value and AnimationClock. /// Note that since there is no current requirement that we be able to set or replace either the /// base value or the AnimationClock, this is the only way to initialize an instance of /// DoubleAnimationClockResource. /// Also, we currently Assert that the resource is non-null, since without mutability /// such a resource isn't needed. /// We can easily extend this class if/when new requirements arise. /// /// Double - The base value. /// AnimationClock - cannot be null. public DoubleAnimationClockResource( Double baseValue, AnimationClock animationClock ): base( animationClock ) { _baseValue = baseValue; } #region Public Properties ////// BaseValue Property - typed accessor for BaseValue. /// public Double BaseValue { get { return _baseValue; } } ////// CurrentValue Property - typed accessor for CurrentValue /// public Double CurrentValue { get { if (_animationClock != null) { // No handoff for DrawingContext animations so we use the // BaseValue as the defaultOriginValue and the // defaultDestinationValue. We call the Timeline's GetCurrentValue // directly to avoid boxing return ((DoubleAnimationBase)(_animationClock.Timeline)).GetCurrentValue( _baseValue, // defaultOriginValue _baseValue, // defaultDesinationValue _animationClock); // clock } else { return _baseValue; } } } #endregion Public Properties #region DUCE // // Method which returns the DUCE type of this class. // The base class needs this type when calling CreateOrAddRefOnChannel. // By providing this via a virtual, we avoid a per-instance storage cost. // protected override DUCE.ResourceType ResourceType { get { return DUCE.ResourceType.TYPE_DOUBLERESOURCE; } } ////// UpdateResource - This method is called to update the render-thread /// resource on a given channel. /// /// The DUCE.ResourceHandle for this resource on this channel. /// The channel on which to update the render-thread resource. ////// Critical: This code calls into an unsafe code block /// TreatAsSafe: This code does not return any critical data.It is ok to expose /// Channels can handle bad pointers and will not affect other appdomains or processes /// [SecurityCritical,SecurityTreatAsSafe] protected override void UpdateResource( DUCE.ResourceHandle handle, DUCE.Channel channel) { DUCE.MILCMD_DOUBLERESOURCE cmd = new DUCE.MILCMD_DOUBLERESOURCE(); cmd.Type = MILCMD.MilCmdDoubleResource; cmd.Handle = handle; cmd.Value = CurrentValue; unsafe { channel.SendCommand( (byte*)&cmd, sizeof(DUCE.MILCMD_DOUBLERESOURCE)); } // Validate this resource IsResourceInvalid = false; } #endregion DUCE private Double _baseValue; } } // 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 System; using System.Windows; using System.Windows.Media; using System.Windows.Media.Composition; using System.Diagnostics; using System.Runtime.InteropServices; using System.Security; namespace System.Windows.Media.Animation { ////// DoubleAnimationClockResource class. /// AnimationClockResource classes refer to an AnimationClock and a base /// value. They implement DUCE.IResource, and thus can be used to produce /// a render-side resource which represents the current value of this /// AnimationClock. /// They subscribe to the Changed event on the AnimationClock and ensure /// that the resource's current value is up to date. /// internal class DoubleAnimationClockResource: AnimationClockResource, DUCE.IResource { ////// Constructor for public DoubleAnimationClockResource. /// This constructor accepts the base value and AnimationClock. /// Note that since there is no current requirement that we be able to set or replace either the /// base value or the AnimationClock, this is the only way to initialize an instance of /// DoubleAnimationClockResource. /// Also, we currently Assert that the resource is non-null, since without mutability /// such a resource isn't needed. /// We can easily extend this class if/when new requirements arise. /// /// Double - The base value. /// AnimationClock - cannot be null. public DoubleAnimationClockResource( Double baseValue, AnimationClock animationClock ): base( animationClock ) { _baseValue = baseValue; } #region Public Properties ////// BaseValue Property - typed accessor for BaseValue. /// public Double BaseValue { get { return _baseValue; } } ////// CurrentValue Property - typed accessor for CurrentValue /// public Double CurrentValue { get { if (_animationClock != null) { // No handoff for DrawingContext animations so we use the // BaseValue as the defaultOriginValue and the // defaultDestinationValue. We call the Timeline's GetCurrentValue // directly to avoid boxing return ((DoubleAnimationBase)(_animationClock.Timeline)).GetCurrentValue( _baseValue, // defaultOriginValue _baseValue, // defaultDesinationValue _animationClock); // clock } else { return _baseValue; } } } #endregion Public Properties #region DUCE // // Method which returns the DUCE type of this class. // The base class needs this type when calling CreateOrAddRefOnChannel. // By providing this via a virtual, we avoid a per-instance storage cost. // protected override DUCE.ResourceType ResourceType { get { return DUCE.ResourceType.TYPE_DOUBLERESOURCE; } } ////// UpdateResource - This method is called to update the render-thread /// resource on a given channel. /// /// The DUCE.ResourceHandle for this resource on this channel. /// The channel on which to update the render-thread resource. ////// Critical: This code calls into an unsafe code block /// TreatAsSafe: This code does not return any critical data.It is ok to expose /// Channels can handle bad pointers and will not affect other appdomains or processes /// [SecurityCritical,SecurityTreatAsSafe] protected override void UpdateResource( DUCE.ResourceHandle handle, DUCE.Channel channel) { DUCE.MILCMD_DOUBLERESOURCE cmd = new DUCE.MILCMD_DOUBLERESOURCE(); cmd.Type = MILCMD.MilCmdDoubleResource; cmd.Handle = handle; cmd.Value = CurrentValue; unsafe { channel.SendCommand( (byte*)&cmd, sizeof(DUCE.MILCMD_DOUBLERESOURCE)); } // Validate this resource IsResourceInvalid = false; } #endregion DUCE private Double _baseValue; } } // 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
- DesignerProperties.cs
- XmlSchemaAttribute.cs
- DataSourceXmlAttributeAttribute.cs
- QuadraticBezierSegment.cs
- StringArrayConverter.cs
- DocumentGridPage.cs
- BamlRecords.cs
- WebPartEventArgs.cs
- ClientFormsAuthenticationCredentials.cs
- ExclusiveTcpTransportManager.cs
- ResourceReader.cs
- RemoteWebConfigurationHost.cs
- Scene3D.cs
- GeometryGroup.cs
- PatternMatchRules.cs
- DataGridViewAddColumnDialog.cs
- StatementContext.cs
- ObjectDataSourceWizardForm.cs
- TargetFrameworkAttribute.cs
- DataServiceRequestOfT.cs
- CapabilitiesAssignment.cs
- EntityDataSourceMemberPath.cs
- QilReplaceVisitor.cs
- XamlContextStack.cs
- ObjectDataSourceStatusEventArgs.cs
- StylusPlugin.cs
- BitmapSizeOptions.cs
- RootDesignerSerializerAttribute.cs
- COM2PropertyDescriptor.cs
- AbandonedMutexException.cs
- OleDbDataReader.cs
- ScopelessEnumAttribute.cs
- UriExt.cs
- AppSettingsExpressionBuilder.cs
- ExpressionVisitor.cs
- GregorianCalendar.cs
- BinaryEditor.cs
- DataTableReader.cs
- QilTypeChecker.cs
- mil_sdk_version.cs
- Query.cs
- ValuePattern.cs
- SystemFonts.cs
- ProxyWebPartManager.cs
- InstanceKeyNotReadyException.cs
- FilterException.cs
- AmbientProperties.cs
- MaskedTextBox.cs
- AnnouncementEndpoint.cs
- TraceSource.cs
- DataGridViewDataConnection.cs
- XamlSerializer.cs
- TextRenderer.cs
- ScaleTransform.cs
- NetNamedPipeBindingCollectionElement.cs
- SynchronizedInputPattern.cs
- MailWebEventProvider.cs
- CommandArguments.cs
- ParseElement.cs
- CubicEase.cs
- FeatureSupport.cs
- ProfileEventArgs.cs
- TabControl.cs
- DataGridViewIntLinkedList.cs
- AxHost.cs
- _HTTPDateParse.cs
- VBIdentifierTrimConverter.cs
- GuidelineSet.cs
- UpdateRecord.cs
- NameValueCollection.cs
- LogLogRecordHeader.cs
- InfoCardTrace.cs
- Rect.cs
- TypedDataSourceCodeGenerator.cs
- DataBoundControlActionList.cs
- CodeParameterDeclarationExpression.cs
- QilFunction.cs
- RootAction.cs
- ContainerUtilities.cs
- CodeNamespaceImportCollection.cs
- DynamicDocumentPaginator.cs
- TargetControlTypeAttribute.cs
- SpellCheck.cs
- SmiSettersStream.cs
- InstanceData.cs
- RepeatBehavior.cs
- EventHandlingScope.cs
- DataServiceRequest.cs
- RegexCompilationInfo.cs
- SchemaElementLookUpTable.cs
- SoapReflectionImporter.cs
- FormView.cs
- CommandBindingCollection.cs
- DetailsViewAutoFormat.cs
- DetailsViewCommandEventArgs.cs
- TextMarkerSource.cs
- XmlStreamStore.cs
- SinglePageViewer.cs
- Tokenizer.cs
- DialogDivider.cs