Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Media / Animation / PointAnimationUsingPath.cs / 1 / PointAnimationUsingPath.cs
//------------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
using MS.Internal;
using System;
using System.IO;
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Media;
using System.Windows.Markup;
using System.Windows.Media.Animation;
using System.Windows.Media.Composition;
namespace System.Windows.Media.Animation
{
///
/// This animation can be used inside of a MatrixAnimationCollection to move
/// a visual object along a path.
///
public class PointAnimationUsingPath : PointAnimationBase
{
#region Data
private bool _isValid;
///
/// If IsCumulative is set to true, this value represents the value that
/// is accumulated with each repeat. It is the end value of the path
/// output value for the path.
///
private Vector _accumulatingVector = new Vector();
#endregion
#region Constructors
///
/// Creates a new PathPointAnimation class.
///
///
/// There is no default PathGeometry so the user must specify one.
///
public PointAnimationUsingPath()
: base()
{
}
#endregion
#region Public
///
/// PathGeometry Property
///
public static readonly DependencyProperty PathGeometryProperty =
DependencyProperty.Register(
"PathGeometry",
typeof(PathGeometry),
typeof(PointAnimationUsingPath),
new PropertyMetadata(
(PathGeometry)null));
///
/// This geometry specifies the path.
///
public PathGeometry PathGeometry
{
get
{
return (PathGeometry)GetValue(PathGeometryProperty);
}
set
{
SetValue(PathGeometryProperty, value);
}
}
#endregion
#region Freezable
///
/// Creates a copy of this PointAnimationUsingPath.
///
/// The copy.
public new PointAnimationUsingPath Clone()
{
return (PointAnimationUsingPath)base.Clone();
}
///
/// Implementation of Freezable.CreateInstanceCore .
///
/// The new Freezable.
protected override Freezable CreateInstanceCore()
{
return new PointAnimationUsingPath();
}
///
/// Implementation of Freezable.OnChanged .
///
protected override void OnChanged()
{
_isValid = false;
base.OnChanged();
}
#endregion
#region PointAnimationBase
///
/// Calculates the value this animation believes should be the current value for the property.
///
///
/// This value is the suggested origin value provided to the animation
/// to be used if the animation does not have its own concept of a
/// start value. If this animation is the first in a composition chain
/// this value will be the snapshot value if one is available or the
/// base property value if it is not; otherise this value will be the
/// value returned by the previous animation in the chain with an
/// animationClock that is not Stopped.
///
///
/// This value is the suggested destination value provided to the animation
/// to be used if the animation does not have its own concept of an
/// end value. This value will be the base value if the animation is
/// in the first composition layer of animations on a property;
/// otherwise this value will be the output value from the previous
/// composition layer of animations for the property.
///
///
/// This is the animationClock which can generate the CurrentTime or
/// CurrentProgress value to be used by the animation to generate its
/// output value.
///
///
/// The value this animation believes should be the current value for the property.
///
protected override Point GetCurrentValueCore(Point defaultOriginValue, Point defaultDestinationValue, AnimationClock animationClock)
{
Debug.Assert(animationClock.CurrentState != ClockState.Stopped);
PathGeometry pathGeometry = PathGeometry;
if (pathGeometry == null)
{
return defaultDestinationValue;
}
if (!_isValid)
{
Validate();
}
Point pathPoint;
Point pathTangent;
pathGeometry.GetPointAtFractionLength(animationClock.CurrentProgress.Value, out pathPoint, out pathTangent);
double currentRepeat = (double)(animationClock.CurrentIteration - 1);
if ( IsCumulative
&& currentRepeat > 0)
{
pathPoint = pathPoint + (_accumulatingVector * currentRepeat);
}
if (IsAdditive)
{
return defaultOriginValue + (Vector)pathPoint;
}
else
{
return pathPoint;
}
}
///
/// IsAdditive
///
public bool IsAdditive
{
get
{
return (bool)GetValue(IsAdditiveProperty);
}
set
{
SetValue(IsAdditiveProperty, value);
}
}
///
/// IsCumulative
///
public bool IsCumulative
{
get
{
return (bool)GetValue(IsCumulativeProperty);
}
set
{
SetValue(IsCumulativeProperty, value);
}
}
#endregion
#region Private Methods
private void Validate()
{
Debug.Assert(!_isValid);
if (IsCumulative)
{
Point startPoint;
Point startTangent;
Point endPoint;
Point endTangent;
PathGeometry pathGeometry = PathGeometry;
// Get values at the beginning of the path.
pathGeometry.GetPointAtFractionLength(0.0, out startPoint, out startTangent);
// Get values at the end of the path.
pathGeometry.GetPointAtFractionLength(1.0, out endPoint, out endTangent);
_accumulatingVector.X = endPoint.X - startPoint.X;
_accumulatingVector.Y = endPoint.Y - startPoint.Y;
}
_isValid = true;
}
#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.
//
//-----------------------------------------------------------------------------
using MS.Internal;
using System;
using System.IO;
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Media;
using System.Windows.Markup;
using System.Windows.Media.Animation;
using System.Windows.Media.Composition;
namespace System.Windows.Media.Animation
{
///
/// This animation can be used inside of a MatrixAnimationCollection to move
/// a visual object along a path.
///
public class PointAnimationUsingPath : PointAnimationBase
{
#region Data
private bool _isValid;
///
/// If IsCumulative is set to true, this value represents the value that
/// is accumulated with each repeat. It is the end value of the path
/// output value for the path.
///
private Vector _accumulatingVector = new Vector();
#endregion
#region Constructors
///
/// Creates a new PathPointAnimation class.
///
///
/// There is no default PathGeometry so the user must specify one.
///
public PointAnimationUsingPath()
: base()
{
}
#endregion
#region Public
///
/// PathGeometry Property
///
public static readonly DependencyProperty PathGeometryProperty =
DependencyProperty.Register(
"PathGeometry",
typeof(PathGeometry),
typeof(PointAnimationUsingPath),
new PropertyMetadata(
(PathGeometry)null));
///
/// This geometry specifies the path.
///
public PathGeometry PathGeometry
{
get
{
return (PathGeometry)GetValue(PathGeometryProperty);
}
set
{
SetValue(PathGeometryProperty, value);
}
}
#endregion
#region Freezable
///
/// Creates a copy of this PointAnimationUsingPath.
///
/// The copy.
public new PointAnimationUsingPath Clone()
{
return (PointAnimationUsingPath)base.Clone();
}
///
/// Implementation of Freezable.CreateInstanceCore .
///
/// The new Freezable.
protected override Freezable CreateInstanceCore()
{
return new PointAnimationUsingPath();
}
///
/// Implementation of Freezable.OnChanged .
///
protected override void OnChanged()
{
_isValid = false;
base.OnChanged();
}
#endregion
#region PointAnimationBase
///
/// Calculates the value this animation believes should be the current value for the property.
///
///
/// This value is the suggested origin value provided to the animation
/// to be used if the animation does not have its own concept of a
/// start value. If this animation is the first in a composition chain
/// this value will be the snapshot value if one is available or the
/// base property value if it is not; otherise this value will be the
/// value returned by the previous animation in the chain with an
/// animationClock that is not Stopped.
///
///
/// This value is the suggested destination value provided to the animation
/// to be used if the animation does not have its own concept of an
/// end value. This value will be the base value if the animation is
/// in the first composition layer of animations on a property;
/// otherwise this value will be the output value from the previous
/// composition layer of animations for the property.
///
///
/// This is the animationClock which can generate the CurrentTime or
/// CurrentProgress value to be used by the animation to generate its
/// output value.
///
///
/// The value this animation believes should be the current value for the property.
///
protected override Point GetCurrentValueCore(Point defaultOriginValue, Point defaultDestinationValue, AnimationClock animationClock)
{
Debug.Assert(animationClock.CurrentState != ClockState.Stopped);
PathGeometry pathGeometry = PathGeometry;
if (pathGeometry == null)
{
return defaultDestinationValue;
}
if (!_isValid)
{
Validate();
}
Point pathPoint;
Point pathTangent;
pathGeometry.GetPointAtFractionLength(animationClock.CurrentProgress.Value, out pathPoint, out pathTangent);
double currentRepeat = (double)(animationClock.CurrentIteration - 1);
if ( IsCumulative
&& currentRepeat > 0)
{
pathPoint = pathPoint + (_accumulatingVector * currentRepeat);
}
if (IsAdditive)
{
return defaultOriginValue + (Vector)pathPoint;
}
else
{
return pathPoint;
}
}
///
/// IsAdditive
///
public bool IsAdditive
{
get
{
return (bool)GetValue(IsAdditiveProperty);
}
set
{
SetValue(IsAdditiveProperty, value);
}
}
///
/// IsCumulative
///
public bool IsCumulative
{
get
{
return (bool)GetValue(IsCumulativeProperty);
}
set
{
SetValue(IsCumulativeProperty, value);
}
}
#endregion
#region Private Methods
private void Validate()
{
Debug.Assert(!_isValid);
if (IsCumulative)
{
Point startPoint;
Point startTangent;
Point endPoint;
Point endTangent;
PathGeometry pathGeometry = PathGeometry;
// Get values at the beginning of the path.
pathGeometry.GetPointAtFractionLength(0.0, out startPoint, out startTangent);
// Get values at the end of the path.
pathGeometry.GetPointAtFractionLength(1.0, out endPoint, out endTangent);
_accumulatingVector.X = endPoint.X - startPoint.X;
_accumulatingVector.Y = endPoint.Y - startPoint.Y;
}
_isValid = true;
}
#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
- PathBox.cs
- ByteKeyFrameCollection.cs
- ContentPlaceHolder.cs
- DataGridRow.cs
- HtmlInputText.cs
- WebPartVerbsEventArgs.cs
- MergeFilterQuery.cs
- XmlNavigatorFilter.cs
- DesignerCommandAdapter.cs
- NavigationPropertyEmitter.cs
- Stylesheet.cs
- GridViewRowPresenter.cs
- StylusPointPropertyId.cs
- ExpressionUtilities.cs
- Rotation3DAnimation.cs
- xdrvalidator.cs
- Task.cs
- PeerUnsafeNativeMethods.cs
- PipeSecurity.cs
- VoiceObjectToken.cs
- XPathBuilder.cs
- CodeCompiler.cs
- XmlSchemaAnyAttribute.cs
- KeyProperty.cs
- URLBuilder.cs
- VectorKeyFrameCollection.cs
- DocumentViewerAutomationPeer.cs
- FontInfo.cs
- FacetChecker.cs
- FastEncoderWindow.cs
- CommandHelpers.cs
- GCHandleCookieTable.cs
- VisualStyleInformation.cs
- ListView.cs
- DataGridViewControlCollection.cs
- GetLedgerEntryForRecipientRequest.cs
- MediaPlayerState.cs
- SrgsElement.cs
- CryptoHandle.cs
- RelationshipDetailsCollection.cs
- ActivityCodeDomSerializer.cs
- EditCommandColumn.cs
- EndpointNotFoundException.cs
- ComponentEditorForm.cs
- ProgressBarAutomationPeer.cs
- RangeContentEnumerator.cs
- ClientApiGenerator.cs
- DependencySource.cs
- RadioButtonRenderer.cs
- DispatcherTimer.cs
- Hex.cs
- EncodingDataItem.cs
- EncryptedPackage.cs
- MediaPlayerState.cs
- COM2AboutBoxPropertyDescriptor.cs
- Graphics.cs
- SingleKeyFrameCollection.cs
- TypeConverterHelper.cs
- SingletonConnectionReader.cs
- OperationAbortedException.cs
- Speller.cs
- MultipleCopiesCollection.cs
- HttpWebRequestElement.cs
- xamlnodes.cs
- WriteTimeStream.cs
- TriggerAction.cs
- CroppedBitmap.cs
- SessionStateContainer.cs
- NonBatchDirectoryCompiler.cs
- UshortList2.cs
- Int64Storage.cs
- XsdValidatingReader.cs
- PropertyTabChangedEvent.cs
- XPathScanner.cs
- Crc32.cs
- FileDetails.cs
- SerializerProvider.cs
- SelfIssuedAuthRSACryptoProvider.cs
- OrderedDictionaryStateHelper.cs
- BrowserTree.cs
- FormsAuthenticationConfiguration.cs
- DispatchOperation.cs
- NativeRightsManagementAPIsStructures.cs
- QueryActivatableWorkflowsCommand.cs
- Size3DValueSerializer.cs
- DataGrid.cs
- SqlInternalConnectionSmi.cs
- AddingNewEventArgs.cs
- ServiceDesigner.xaml.cs
- SessionEndingCancelEventArgs.cs
- Html32TextWriter.cs
- OleDbDataAdapter.cs
- HttpCapabilitiesBase.cs
- DbConnectionStringCommon.cs
- PolyQuadraticBezierSegment.cs
- EnumDataContract.cs
- StreamingContext.cs
- DispatcherExceptionFilterEventArgs.cs
- Registry.cs
- Int32CollectionConverter.cs