Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Media / RotateTransform.cs / 1 / 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
- CompressStream.cs
- SizeAnimationClockResource.cs
- Point3DKeyFrameCollection.cs
- NativeMethods.cs
- SignedPkcs7.cs
- DataGridCommandEventArgs.cs
- PropertyMapper.cs
- StreamReader.cs
- OrderPreservingMergeHelper.cs
- ThreadAttributes.cs
- TextTreeTextElementNode.cs
- InvalidFilterCriteriaException.cs
- PropertyChangedEventManager.cs
- StructuredTypeEmitter.cs
- DeviceContexts.cs
- InfoCardRSAOAEPKeyExchangeDeformatter.cs
- XmlSchemaValidationException.cs
- BadImageFormatException.cs
- Brush.cs
- VBCodeProvider.cs
- Visual3D.cs
- RegexRunnerFactory.cs
- DetailsViewModeEventArgs.cs
- SafeMemoryMappedViewHandle.cs
- RenderData.cs
- AmbiguousMatchException.cs
- _CommandStream.cs
- IndexOutOfRangeException.cs
- QilName.cs
- DeviceContext.cs
- TextBoxBaseDesigner.cs
- ServiceProviders.cs
- WindowsStatic.cs
- InstalledVoice.cs
- AnnotationAuthorChangedEventArgs.cs
- __ComObject.cs
- JapaneseCalendar.cs
- ImplicitInputBrush.cs
- PeerPresenceInfo.cs
- XmlElementAttribute.cs
- DataExpression.cs
- PropertyIDSet.cs
- EventMappingSettingsCollection.cs
- ToolboxItemLoader.cs
- TaskForm.cs
- RootBrowserWindowAutomationPeer.cs
- Hex.cs
- KeyInfo.cs
- SerializationFieldInfo.cs
- WebPartAuthorizationEventArgs.cs
- Triplet.cs
- ColorConvertedBitmapExtension.cs
- IgnoreSectionHandler.cs
- TemporaryBitmapFile.cs
- GiveFeedbackEventArgs.cs
- ConstrainedDataObject.cs
- BamlMapTable.cs
- RewritingSimplifier.cs
- UserControl.cs
- ReadOnlyPropertyMetadata.cs
- StringKeyFrameCollection.cs
- WpfWebRequestHelper.cs
- odbcmetadatacollectionnames.cs
- VirtualizingStackPanel.cs
- AppLevelCompilationSectionCache.cs
- WSFederationHttpSecurityMode.cs
- Image.cs
- ErrorRuntimeConfig.cs
- Inflater.cs
- ItemsChangedEventArgs.cs
- Transactions.cs
- DataGridViewAdvancedBorderStyle.cs
- RegexCompilationInfo.cs
- OperatorExpressions.cs
- CodeExporter.cs
- ConfigurationValidatorAttribute.cs
- Transaction.cs
- OleDbRowUpdatingEvent.cs
- Assembly.cs
- DataBinding.cs
- QuaternionConverter.cs
- NetworkInterface.cs
- versioninfo.cs
- ShadowGlyph.cs
- GroupByQueryOperator.cs
- CommandExpr.cs
- SimpleRecyclingCache.cs
- ScalarConstant.cs
- Completion.cs
- CustomExpressionEventArgs.cs
- OutOfMemoryException.cs
- WebPartTransformerAttribute.cs
- PaperSource.cs
- RuntimeArgumentHandle.cs
- ConfigurationElementCollection.cs
- AnnotationStore.cs
- RoutedEventValueSerializer.cs
- SmiConnection.cs
- MemoryFailPoint.cs
- RestHandlerFactory.cs