Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- Path.cs
- CollectionCodeDomSerializer.cs
- WebPartConnectionsCancelVerb.cs
- TokenBasedSetEnumerator.cs
- FunctionImportMapping.ReturnTypeRenameMapping.cs
- Span.cs
- SqlDependencyUtils.cs
- WrappedReader.cs
- SqlCacheDependency.cs
- Point3D.cs
- DiagnosticTrace.cs
- TextFormatterImp.cs
- Bind.cs
- TextParagraphProperties.cs
- OleDragDropHandler.cs
- DataGridViewComboBoxColumn.cs
- EntityCollection.cs
- CapabilitiesPattern.cs
- CaseInsensitiveHashCodeProvider.cs
- SplitterPanel.cs
- Queue.cs
- RelationshipDetailsRow.cs
- ComponentGlyph.cs
- RepeaterItemEventArgs.cs
- PrtCap_Public.cs
- TraceListener.cs
- OneToOneMappingSerializer.cs
- EncoderBestFitFallback.cs
- TriggerAction.cs
- QueryCursorEventArgs.cs
- ThreadStateException.cs
- XmlSchemaNotation.cs
- ProxyManager.cs
- RSAPKCS1KeyExchangeFormatter.cs
- ScriptingScriptResourceHandlerSection.cs
- SmiRecordBuffer.cs
- XmlCompatibilityReader.cs
- KeyedCollection.cs
- TemplateControlBuildProvider.cs
- IOException.cs
- InspectionWorker.cs
- DispatchWrapper.cs
- DateTimeOffsetConverter.cs
- WaveHeader.cs
- CapabilitiesRule.cs
- SafeEventLogReadHandle.cs
- CapabilitiesState.cs
- DataGridParentRows.cs
- FormattedText.cs
- AttributeUsageAttribute.cs
- DocumentsTrace.cs
- RetrieveVirtualItemEventArgs.cs
- HtmlTableCellCollection.cs
- ErrorHandlerModule.cs
- MeasureItemEvent.cs
- QuotedPrintableStream.cs
- BaseValidator.cs
- ReturnType.cs
- RuntimeConfigLKG.cs
- InternalCache.cs
- EncoderParameter.cs
- CodeExpressionStatement.cs
- KeyValuePairs.cs
- CornerRadiusConverter.cs
- DataBindingValueUIHandler.cs
- ImageFormatConverter.cs
- TableCellsCollectionEditor.cs
- SqlComparer.cs
- SmtpSection.cs
- ActivityExecutor.cs
- ReflectTypeDescriptionProvider.cs
- CollectionConverter.cs
- OleDbException.cs
- WebPartUserCapability.cs
- BevelBitmapEffect.cs
- Calendar.cs
- ConstructorArgumentAttribute.cs
- WebPartTracker.cs
- DataGridViewColumnHeaderCell.cs
- TextEditorDragDrop.cs
- AnnotationAuthorChangedEventArgs.cs
- WebBrowserHelper.cs
- DataGridHelper.cs
- ParameterReplacerVisitor.cs
- ArrayElementGridEntry.cs
- MatchingStyle.cs
- COAUTHIDENTITY.cs
- EnumMember.cs
- ISAPIApplicationHost.cs
- ConfigurationException.cs
- WindowsGraphics.cs
- ToolStripOverflowButton.cs
- WaitForChangedResult.cs
- TouchEventArgs.cs
- UrlPropertyAttribute.cs
- SoapTransportImporter.cs
- DocumentSequenceHighlightLayer.cs
- StylusLogic.cs
- FindResponse.cs
- CalendarDay.cs