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
- Vertex.cs
- SQLInt16Storage.cs
- ValueTable.cs
- Calendar.cs
- WindowsHyperlink.cs
- GeneratedView.cs
- SpotLight.cs
- Helper.cs
- autovalidator.cs
- DeclarativeCatalogPart.cs
- CryptoConfig.cs
- COM2EnumConverter.cs
- WindowsListViewScroll.cs
- ConversionValidationRule.cs
- MachineKeySection.cs
- ImageSourceValueSerializer.cs
- Condition.cs
- Privilege.cs
- EdmValidator.cs
- FontStyles.cs
- Codec.cs
- ValueUnavailableException.cs
- VectorCollectionValueSerializer.cs
- SpnEndpointIdentityExtension.cs
- CAGDesigner.cs
- MergeExecutor.cs
- X509Utils.cs
- NullRuntimeConfig.cs
- CodeIndexerExpression.cs
- DataGridViewUtilities.cs
- Timer.cs
- CodeGenerator.cs
- HtmlFormWrapper.cs
- FontStretches.cs
- OpenTypeCommon.cs
- COSERVERINFO.cs
- AssemblyBuilderData.cs
- Span.cs
- IgnoreFlushAndCloseStream.cs
- ExpressionsCollectionEditor.cs
- TextLineBreak.cs
- DbParameterHelper.cs
- XmlLanguageConverter.cs
- NavigationWindow.cs
- VariableQuery.cs
- ProtocolsConfigurationEntry.cs
- Delegate.cs
- XamlClipboardData.cs
- GridItemCollection.cs
- EmptyEnumerator.cs
- Ppl.cs
- FixedDSBuilder.cs
- ColorAnimationBase.cs
- NamedPipeProcessProtocolHandler.cs
- Rectangle.cs
- XhtmlConformanceSection.cs
- TableLayoutSettings.cs
- HtmlTable.cs
- DataMemberAttribute.cs
- ZoneMembershipCondition.cs
- IResourceProvider.cs
- XamlRtfConverter.cs
- AutoSizeComboBox.cs
- ResourceExpression.cs
- WinEventTracker.cs
- TextServicesManager.cs
- Model3DCollection.cs
- MailDefinitionBodyFileNameEditor.cs
- WebHttpBindingElement.cs
- WebHttpBehavior.cs
- ImageKeyConverter.cs
- RawAppCommandInputReport.cs
- RemotingServices.cs
- ScrollableControl.cs
- EntityKey.cs
- SerializationBinder.cs
- NullableConverter.cs
- FixedFlowMap.cs
- SoapTypeAttribute.cs
- ValidationHelpers.cs
- OperationFormatStyle.cs
- OdbcConnectionHandle.cs
- NCryptNative.cs
- DataGridViewRowsRemovedEventArgs.cs
- SpecialNameAttribute.cs
- Stack.cs
- GenericTypeParameterBuilder.cs
- StringAnimationBase.cs
- SchemaInfo.cs
- ImageField.cs
- SelectorAutomationPeer.cs
- DataGridColumnsPage.cs
- ScriptingSectionGroup.cs
- FlowDocumentPage.cs
- HtmlElementEventArgs.cs
- BrowserDefinition.cs
- versioninfo.cs
- MessageSecurityOverHttpElement.cs
- LoginName.cs
- VisualStyleTypesAndProperties.cs