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
- UxThemeWrapper.cs
- NativeMethods.cs
- WindowsRebar.cs
- DbConvert.cs
- Events.cs
- Hex.cs
- PrintPreviewDialog.cs
- EventHandlers.cs
- SiteMapPath.cs
- IQueryable.cs
- recordstate.cs
- PathGeometry.cs
- TraceUtility.cs
- RawStylusInput.cs
- VirtualizedContainerService.cs
- ellipse.cs
- SoapServerMessage.cs
- DateTimeFormatInfoScanner.cs
- Part.cs
- RoutedEventConverter.cs
- DeferrableContentConverter.cs
- NativeMethods.cs
- SimpleApplicationHost.cs
- CompositionCommandSet.cs
- BackoffTimeoutHelper.cs
- InboundActivityHelper.cs
- ViewgenGatekeeper.cs
- KeyEvent.cs
- Unit.cs
- DataPagerCommandEventArgs.cs
- TableLayoutPanelCellPosition.cs
- ValidationContext.cs
- BookmarkWorkItem.cs
- ConfigurationLockCollection.cs
- OrderedDictionary.cs
- EventLogTraceListener.cs
- ZipIOLocalFileDataDescriptor.cs
- DescendantBaseQuery.cs
- Operand.cs
- WindowsTooltip.cs
- TextRangeEdit.cs
- ToolstripProfessionalRenderer.cs
- TypeGeneratedEventArgs.cs
- VirtualPathProvider.cs
- OpenTypeCommon.cs
- DataServiceContext.cs
- SoapAttributeOverrides.cs
- HtmlWindow.cs
- SpellCheck.cs
- MultipartIdentifier.cs
- Guid.cs
- UInt16.cs
- LayoutEvent.cs
- ConfigXmlText.cs
- WebServiceHandlerFactory.cs
- ZipIOCentralDirectoryFileHeader.cs
- DictionarySectionHandler.cs
- TextDataBindingHandler.cs
- EDesignUtil.cs
- DbConnectionStringBuilder.cs
- DesignerAttribute.cs
- PageBuildProvider.cs
- CodeMemberField.cs
- RangeBase.cs
- ConfigurationSectionGroupCollection.cs
- mactripleDES.cs
- SiteMapSection.cs
- SerialPinChanges.cs
- ExpressionBindingCollection.cs
- CodePrimitiveExpression.cs
- XmlElementList.cs
- SHA384.cs
- GridViewRowPresenterBase.cs
- HostedNamedPipeTransportManager.cs
- PixelFormats.cs
- keycontainerpermission.cs
- FreeFormDragDropManager.cs
- storepermission.cs
- ConfigurationElementProperty.cs
- AutoGeneratedFieldProperties.cs
- XmlDataSourceNodeDescriptor.cs
- COM2AboutBoxPropertyDescriptor.cs
- ComboBox.cs
- WindowsListViewScroll.cs
- EncodingTable.cs
- CellParagraph.cs
- DataReaderContainer.cs
- TransformConverter.cs
- CopyAction.cs
- AsmxEndpointPickerExtension.cs
- RoutedEventHandlerInfo.cs
- Byte.cs
- ContextMenuStrip.cs
- AmbientEnvironment.cs
- BlurBitmapEffect.cs
- ColumnCollection.cs
- ManifestResourceInfo.cs
- InheritablePropertyChangeInfo.cs
- XamlSerializerUtil.cs
- BaseCollection.cs