Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Media / TransformGroup.cs / 1 / TransformGroup.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2001 // // File: TransformGroup.cs //----------------------------------------------------------------------------- using System; using System.Windows; using System.Windows.Media; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Collections; using System.Collections.Generic; using MS.Internal; using System.Windows.Media.Animation; using System.Globalization; using System.Text; using System.Runtime.InteropServices; using System.Windows.Markup; using System.Windows.Media.Composition; using System.Diagnostics; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { #region TransformGroup ////// The class definition for TransformGroup /// [ContentProperty("Children")] public sealed partial class TransformGroup : Transform { #region Constructors ////// Default Constructor /// public TransformGroup() { } #endregion #region Value ////// Return the current transformation value. /// public override Matrix Value { get { ReadPreamble(); TransformCollection children = Children; if ((children == null) || (children.Count == 0)) { return new Matrix(); } Matrix transform = children.Internal_GetItem(0).Value; for (int i = 1; i < children.Count; i++) { transform *= children.Internal_GetItem(i).Value; } return transform; } } #endregion #region IsIdentity ////// Returns true if transformation matches the identity transform. /// internal override bool IsIdentity { get { TransformCollection children = Children; if ((children == null) || (children.Count == 0)) { return true; } for (int i = 0; i < children.Count; i++) { if (!children.Internal_GetItem(i).IsIdentity) { return false; } } return true; } } #endregion #region Internal Methods internal override bool CanSerializeToString() { return false; } #endregion Internal Methods } #endregion } // 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: TransformGroup.cs //----------------------------------------------------------------------------- using System; using System.Windows; using System.Windows.Media; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Collections; using System.Collections.Generic; using MS.Internal; using System.Windows.Media.Animation; using System.Globalization; using System.Text; using System.Runtime.InteropServices; using System.Windows.Markup; using System.Windows.Media.Composition; using System.Diagnostics; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { #region TransformGroup ////// The class definition for TransformGroup /// [ContentProperty("Children")] public sealed partial class TransformGroup : Transform { #region Constructors ////// Default Constructor /// public TransformGroup() { } #endregion #region Value ////// Return the current transformation value. /// public override Matrix Value { get { ReadPreamble(); TransformCollection children = Children; if ((children == null) || (children.Count == 0)) { return new Matrix(); } Matrix transform = children.Internal_GetItem(0).Value; for (int i = 1; i < children.Count; i++) { transform *= children.Internal_GetItem(i).Value; } return transform; } } #endregion #region IsIdentity ////// Returns true if transformation matches the identity transform. /// internal override bool IsIdentity { get { TransformCollection children = Children; if ((children == null) || (children.Count == 0)) { return true; } for (int i = 0; i < children.Count; i++) { if (!children.Internal_GetItem(i).IsIdentity) { return false; } } return true; } } #endregion #region Internal Methods internal override bool CanSerializeToString() { return false; } #endregion Internal Methods } #endregion } // 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
- AlternationConverter.cs
- LabelAutomationPeer.cs
- FakeModelItemImpl.cs
- SystemUdpStatistics.cs
- DataPagerFieldItem.cs
- KeyFrames.cs
- OdbcParameterCollection.cs
- EventPrivateKey.cs
- WebControlParameterProxy.cs
- TypographyProperties.cs
- GeneralTransform.cs
- SinglePhaseEnlistment.cs
- ContractValidationHelper.cs
- OracleMonthSpan.cs
- Rect3D.cs
- GeneralTransform3DCollection.cs
- HtmlAnchor.cs
- ExtentJoinTreeNode.cs
- MenuTracker.cs
- MatrixAnimationBase.cs
- EncodingDataItem.cs
- DefaultMemberAttribute.cs
- HtmlHead.cs
- DataSourceXmlElementAttribute.cs
- JapaneseLunisolarCalendar.cs
- Char.cs
- UriTemplateLiteralQueryValue.cs
- GestureRecognizer.cs
- WebColorConverter.cs
- UnionExpr.cs
- GuidConverter.cs
- securestring.cs
- documentsequencetextview.cs
- RuleValidation.cs
- NativeMethods.cs
- TextPattern.cs
- DeploymentSection.cs
- StructuralObject.cs
- PrintPreviewControl.cs
- ListItemsCollectionEditor.cs
- AsynchronousChannel.cs
- sqlstateclientmanager.cs
- ToolStripItemImageRenderEventArgs.cs
- DataGridViewRowPrePaintEventArgs.cs
- DataSourceCacheDurationConverter.cs
- RequestCachePolicyConverter.cs
- InstalledVoice.cs
- CodeDOMProvider.cs
- UInt16Converter.cs
- StreamAsIStream.cs
- WsdlInspector.cs
- NativeMethodsCLR.cs
- ThumbAutomationPeer.cs
- RenderDataDrawingContext.cs
- SourceElementsCollection.cs
- DataGridViewCellStyleEditor.cs
- PropertyValue.cs
- TreeNodeConverter.cs
- WriterOutput.cs
- RegionIterator.cs
- MouseButtonEventArgs.cs
- COM2PropertyPageUITypeConverter.cs
- ScrollBar.cs
- ISAPIRuntime.cs
- SerialPinChanges.cs
- XmlSchemaImporter.cs
- LoginUtil.cs
- LocalizedNameDescriptionPair.cs
- StylusPointPropertyUnit.cs
- StateInitializationDesigner.cs
- FrameworkPropertyMetadata.cs
- Registry.cs
- ShaderEffect.cs
- BrowserCapabilitiesFactoryBase.cs
- Schema.cs
- Tuple.cs
- CommandHelper.cs
- DoubleUtil.cs
- TCPClient.cs
- RuleSettings.cs
- BaseUriHelper.cs
- EventLogTraceListener.cs
- AdjustableArrowCap.cs
- OracleInternalConnection.cs
- LineServicesRun.cs
- ScriptingSectionGroup.cs
- FontDriver.cs
- ExtendedProperty.cs
- NullEntityWrapper.cs
- HuffCodec.cs
- ShapingEngine.cs
- LineBreak.cs
- SourceElementsCollection.cs
- BatchStream.cs
- Mappings.cs
- DynamicDataExtensions.cs
- TheQuery.cs
- MimeParameters.cs
- SemanticResolver.cs
- ReceiveMessageContent.cs