Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / RotateTransform.cs / 1305600 / RotateTransform.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2001 // // File: RotateTransform.cs //----------------------------------------------------------------------------- using MS.Internal; using MS.Internal.PresentationCore; using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { ////// Create a rotation transformation in degrees. /// public sealed partial class RotateTransform : Transform { ////// /// public RotateTransform() { } ////// Create a rotation transformation in degrees. /// ///The angle of rotation in degrees. public RotateTransform(double angle) { Angle = angle; } ////// Create a rotation transformation in degrees. /// public RotateTransform( double angle, double centerX, double centerY ) : this(angle) { CenterX = centerX; CenterY = centerY; } ////// Return the current transformation value. /// public override Matrix Value { get { ReadPreamble(); Matrix m = new Matrix(); m.RotateAt(Angle, CenterX, CenterY); return m; } } ////// Returns true if transformation matches the identity transform. /// internal override bool IsIdentity { get { return Angle == 0 && CanFreeze; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2001 // // File: RotateTransform.cs //----------------------------------------------------------------------------- using MS.Internal; using MS.Internal.PresentationCore; using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { ////// Create a rotation transformation in degrees. /// public sealed partial class RotateTransform : Transform { ////// /// public RotateTransform() { } ////// Create a rotation transformation in degrees. /// ///The angle of rotation in degrees. public RotateTransform(double angle) { Angle = angle; } ////// Create a rotation transformation in degrees. /// public RotateTransform( double angle, double centerX, double centerY ) : this(angle) { CenterX = centerX; CenterY = centerY; } ////// Return the current transformation value. /// public override Matrix Value { get { ReadPreamble(); Matrix m = new Matrix(); m.RotateAt(Angle, CenterX, CenterY); return m; } } ////// Returns true if transformation matches the identity transform. /// internal override bool IsIdentity { get { return Angle == 0 && CanFreeze; } } } } // 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
- TabItemAutomationPeer.cs
- WorkflowApplicationException.cs
- DynamicUpdateCommand.cs
- __ConsoleStream.cs
- compensatingcollection.cs
- StreamingContext.cs
- SqlTrackingQuery.cs
- BindingExpression.cs
- BitmapEffectGeneralTransform.cs
- QueryAccessibilityHelpEvent.cs
- OracleCommand.cs
- BamlBinaryWriter.cs
- XmlSchemaSimpleTypeRestriction.cs
- ProcessModelInfo.cs
- LambdaCompiler.ControlFlow.cs
- RootBrowserWindowAutomationPeer.cs
- ToolboxItemCollection.cs
- ContentElement.cs
- MissingSatelliteAssemblyException.cs
- CodeTypeMember.cs
- QueryAccessibilityHelpEvent.cs
- Models.cs
- XmlSerializerOperationGenerator.cs
- DropSource.cs
- ValidationSummary.cs
- KeyPullup.cs
- InstanceContextManager.cs
- ModifierKeysValueSerializer.cs
- iisPickupDirectory.cs
- BitmapFrameDecode.cs
- PartitionResolver.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- OpenTypeLayout.cs
- DbConnectionOptions.cs
- DefaultTraceListener.cs
- WorkflowPersistenceService.cs
- FileBasedResourceGroveler.cs
- SynchronizedPool.cs
- ShutDownListener.cs
- FloaterParagraph.cs
- PrintDialog.cs
- RoleService.cs
- ToolStripOverflowButton.cs
- Model3DGroup.cs
- LinkedDataMemberFieldEditor.cs
- WebPartMenuStyle.cs
- storepermission.cs
- ListMarkerLine.cs
- XmlBinaryReader.cs
- TextDocumentView.cs
- Vector3DAnimationUsingKeyFrames.cs
- ObjectDataProvider.cs
- OleDbParameter.cs
- HyperLinkField.cs
- CustomPopupPlacement.cs
- Rect3DValueSerializer.cs
- DataGridAutoGeneratingColumnEventArgs.cs
- HttpDebugHandler.cs
- ProfileSettingsCollection.cs
- EmbeddedMailObjectsCollection.cs
- FormsAuthenticationUserCollection.cs
- HttpListenerPrefixCollection.cs
- SqlReferenceCollection.cs
- PersonalizationStateInfo.cs
- TemplateBaseAction.cs
- PolicyException.cs
- TextModifier.cs
- OpCellTreeNode.cs
- Profiler.cs
- EmptyWithCancelationCheckWorkItem.cs
- AssemblyInfo.cs
- BezierSegment.cs
- XmlHelper.cs
- ResourceAttributes.cs
- ExpressionNormalizer.cs
- InProcStateClientManager.cs
- WebPartAuthorizationEventArgs.cs
- StrokeCollectionDefaultValueFactory.cs
- GridViewEditEventArgs.cs
- ImmutableObjectAttribute.cs
- SqlXml.cs
- Size3DConverter.cs
- Compiler.cs
- RuleSetDialog.cs
- NavigationProgressEventArgs.cs
- SpellerError.cs
- SymLanguageVendor.cs
- CssTextWriter.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- Lasso.cs
- AnonymousIdentificationModule.cs
- SolidColorBrush.cs
- HttpClientProtocol.cs
- DataGridViewUtilities.cs
- AudioLevelUpdatedEventArgs.cs
- DataObjectCopyingEventArgs.cs
- SoapAttributeOverrides.cs
- XmlLinkedNode.cs
- SessionEndingCancelEventArgs.cs
- PtsContext.cs