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
- ProviderSettings.cs
- QilFunction.cs
- ComPlusInstanceProvider.cs
- ActivityTypeDesigner.xaml.cs
- SqlConnectionPoolProviderInfo.cs
- XmlCustomFormatter.cs
- TextTreeRootTextBlock.cs
- FormsAuthentication.cs
- DictionaryContent.cs
- BeginStoryboard.cs
- DesignerActionPropertyItem.cs
- ExistsInCollection.cs
- UmAlQuraCalendar.cs
- HttpClientCertificate.cs
- BooleanConverter.cs
- IndexerNameAttribute.cs
- RangeContentEnumerator.cs
- DbProviderManifest.cs
- DbMetaDataCollectionNames.cs
- IncrementalCompileAnalyzer.cs
- PageParserFilter.cs
- SourceSwitch.cs
- HttpCacheParams.cs
- BlurBitmapEffect.cs
- GeometryConverter.cs
- Registry.cs
- LinkArea.cs
- ContainerVisual.cs
- TypeInitializationException.cs
- FixedTextContainer.cs
- Message.cs
- AttributeEmitter.cs
- AlternateViewCollection.cs
- RuleEngine.cs
- DbConnectionPool.cs
- HttpListenerRequestTraceRecord.cs
- DesignSurfaceServiceContainer.cs
- AssertFilter.cs
- EDesignUtil.cs
- User.cs
- ProxyGenerator.cs
- CodeParameterDeclarationExpressionCollection.cs
- TextMarkerSource.cs
- PerformanceCountersElement.cs
- CacheDependency.cs
- InstallerTypeAttribute.cs
- DiffuseMaterial.cs
- URL.cs
- ObjectManager.cs
- SizeAnimationUsingKeyFrames.cs
- LocatorManager.cs
- ObjectQuery_EntitySqlExtensions.cs
- SubpageParaClient.cs
- ButtonAutomationPeer.cs
- VirtualPathUtility.cs
- RayHitTestParameters.cs
- SymbolType.cs
- ImageSourceConverter.cs
- CultureInfo.cs
- ParameterReplacerVisitor.cs
- TextEndOfSegment.cs
- ParserOptions.cs
- TextContainerChangeEventArgs.cs
- GeneratedContractType.cs
- DataViewSetting.cs
- DbConnectionFactory.cs
- Content.cs
- EntityDataSourceChangingEventArgs.cs
- Logging.cs
- PagerSettings.cs
- CompositeTypefaceMetrics.cs
- DataBoundLiteralControl.cs
- BoundField.cs
- ISCIIEncoding.cs
- Dynamic.cs
- SystemWebCachingSectionGroup.cs
- XmlSerializationWriter.cs
- ComplexLine.cs
- PriorityBindingExpression.cs
- MultilineStringConverter.cs
- InternalResources.cs
- bidPrivateBase.cs
- HttpServerUtilityWrapper.cs
- ZipFileInfoCollection.cs
- HtmlTableCell.cs
- ReliableChannelBinder.cs
- ComboBoxRenderer.cs
- ColorConvertedBitmapExtension.cs
- SystemUnicastIPAddressInformation.cs
- Win32MouseDevice.cs
- controlskin.cs
- Stack.cs
- Error.cs
- IItemContainerGenerator.cs
- MetricEntry.cs
- StateManagedCollection.cs
- CharConverter.cs
- ExpiredSecurityTokenException.cs
- EntityKey.cs
- NetworkStream.cs