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
- PEFileReader.cs
- SoapFaultCodes.cs
- BamlLocalizableResource.cs
- OleDbError.cs
- EventSource.cs
- regiisutil.cs
- PhysicalAddress.cs
- XPathExpr.cs
- Schema.cs
- XmlMapping.cs
- ActivityExecutionContextCollection.cs
- WorkflowCompensationBehavior.cs
- MessageAction.cs
- IndentTextWriter.cs
- ProcessingInstructionAction.cs
- XmlElementList.cs
- ArgIterator.cs
- TextBoxAutoCompleteSourceConverter.cs
- Soap12FormatExtensions.cs
- WebMessageFormatHelper.cs
- InvalidateEvent.cs
- MemberCollection.cs
- ResXBuildProvider.cs
- CaseCqlBlock.cs
- FilterEventArgs.cs
- SendMessageContent.cs
- SqlSupersetValidator.cs
- ArgIterator.cs
- IMembershipProvider.cs
- datacache.cs
- LeafCellTreeNode.cs
- BamlBinaryReader.cs
- MailBnfHelper.cs
- CookielessHelper.cs
- FileAuthorizationModule.cs
- RenderingBiasValidation.cs
- SqlStream.cs
- HttpModulesSection.cs
- ComplexLine.cs
- StatusBarItem.cs
- FunctionDefinition.cs
- NonParentingControl.cs
- baseaxisquery.cs
- TokenBasedSetEnumerator.cs
- XmlDictionaryReader.cs
- WindowsSpinner.cs
- NativeMethods.cs
- StringUtil.cs
- RuleEngine.cs
- DbConvert.cs
- XhtmlBasicValidatorAdapter.cs
- _NegotiateClient.cs
- bidPrivateBase.cs
- Membership.cs
- LayoutEngine.cs
- ISAPIRuntime.cs
- IdnElement.cs
- SystemNetworkInterface.cs
- DictionaryChange.cs
- SelectorAutomationPeer.cs
- NotImplementedException.cs
- AdornerPresentationContext.cs
- ErrorRuntimeConfig.cs
- ResourceSet.cs
- Lasso.cs
- _LocalDataStore.cs
- XmlDataSourceDesigner.cs
- ConsumerConnectionPoint.cs
- ScriptingWebServicesSectionGroup.cs
- SqlDataSourceQuery.cs
- StringAnimationUsingKeyFrames.cs
- FixedSOMTableRow.cs
- EUCJPEncoding.cs
- StyleHelper.cs
- XmlSchemaSimpleContentRestriction.cs
- LineGeometry.cs
- AddInControllerImpl.cs
- WebUtil.cs
- SchemaTableOptionalColumn.cs
- ProfileManager.cs
- SHA384Managed.cs
- XmlRawWriterWrapper.cs
- PasswordBoxAutomationPeer.cs
- SegmentInfo.cs
- ReadOnlyTernaryTree.cs
- MultiView.cs
- DocumentGridPage.cs
- WindowsTreeView.cs
- GeometryDrawing.cs
- sqlpipe.cs
- RenderData.cs
- Rect3D.cs
- FastPropertyAccessor.cs
- BaseParser.cs
- ScrollChrome.cs
- WindowsFormsDesignerOptionService.cs
- SkewTransform.cs
- BindingCompleteEventArgs.cs
- Command.cs
- CollectionContainer.cs