Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Media / DrawingCollection.cs / 1 / DrawingCollection.cs
//---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: This file contains non-generated DrawingCollection // methods. // // History: // // 2005/03/18 : timothyc - Created it. // //--------------------------------------------------------------------------- using System.Collections; using System.Collections.Generic; using System.Windows.Media.Animation; using System.Windows.Markup; namespace System.Windows.Media { ////// Collection of Drawing objects /// public sealed partial class DrawingCollection : Animatable, IList, IList{ /// /// Appends the entire input DrawingCollection, while only firing a single set of /// public events. If an exception is thrown from the public events, the /// Append operation is rolled back. /// internal void TransactionalAppend(DrawingCollection collectionToAppend) { // Use appendCount to avoid inconsistencies & runaway loops when // this == collectionToAppend, and to ensure collectionToAppend.Count // is only evaluated once. int appendCount = collectionToAppend.Count; // First, append the collection for(int i = 0; i < appendCount; i++) { AddWithoutFiringPublicEvents(collectionToAppend.Internal_GetItem(i)); } // Fire the public Changed event after all the elements have been added. // // If an exception is thrown, then the Append operation is rolled-back without // firing additional events. try { FireChanged(); } catch (Exception) { // Compute the number of elements that existed before the append int beforeAppendCount = Count - appendCount; // Remove the appended elements in reverse order without firing Changed events. for ( int i = Count - 1; // Start at the current last index i >= beforeAppendCount; // Until the previous last index i-- // Move to the preceding index ) { RemoveAtWithoutFiringPublicEvents(i); } // Avoid firing WritePostscript events (e.g., OnChanged) after rolling-back // the current operation. // // This ensures that only a single set of events is fired for both exceptional & // typical cases, and it's likely that firing events would cause another exception. throw; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: This file contains non-generated DrawingCollection // methods. // // History: // // 2005/03/18 : timothyc - Created it. // //--------------------------------------------------------------------------- using System.Collections; using System.Collections.Generic; using System.Windows.Media.Animation; using System.Windows.Markup; namespace System.Windows.Media { ////// Collection of Drawing objects /// public sealed partial class DrawingCollection : Animatable, IList, IList{ /// /// Appends the entire input DrawingCollection, while only firing a single set of /// public events. If an exception is thrown from the public events, the /// Append operation is rolled back. /// internal void TransactionalAppend(DrawingCollection collectionToAppend) { // Use appendCount to avoid inconsistencies & runaway loops when // this == collectionToAppend, and to ensure collectionToAppend.Count // is only evaluated once. int appendCount = collectionToAppend.Count; // First, append the collection for(int i = 0; i < appendCount; i++) { AddWithoutFiringPublicEvents(collectionToAppend.Internal_GetItem(i)); } // Fire the public Changed event after all the elements have been added. // // If an exception is thrown, then the Append operation is rolled-back without // firing additional events. try { FireChanged(); } catch (Exception) { // Compute the number of elements that existed before the append int beforeAppendCount = Count - appendCount; // Remove the appended elements in reverse order without firing Changed events. for ( int i = Count - 1; // Start at the current last index i >= beforeAppendCount; // Until the previous last index i-- // Move to the preceding index ) { RemoveAtWithoutFiringPublicEvents(i); } // Avoid firing WritePostscript events (e.g., OnChanged) after rolling-back // the current operation. // // This ensures that only a single set of events is fired for both exceptional & // typical cases, and it's likely that firing events would cause another exception. throw; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ToolStripItemGlyph.cs
- Vector3DIndependentAnimationStorage.cs
- Latin1Encoding.cs
- SortQuery.cs
- BitmapEffectGeneralTransform.cs
- CoreSwitches.cs
- ApplicationContext.cs
- SoapSchemaMember.cs
- DialogWindow.cs
- Assert.cs
- precedingquery.cs
- NamedPipeAppDomainProtocolHandler.cs
- PrintingPermissionAttribute.cs
- Geometry.cs
- WorkflowInstance.cs
- ImageMapEventArgs.cs
- PartialArray.cs
- DocumentPageHost.cs
- PermissionRequestEvidence.cs
- FileSecurity.cs
- UriScheme.cs
- PathFigureCollectionConverter.cs
- MatrixUtil.cs
- GeometryModel3D.cs
- DbParameterHelper.cs
- XmlLinkedNode.cs
- WsdlParser.cs
- SHA256Managed.cs
- XhtmlBasicObjectListAdapter.cs
- CredentialCache.cs
- QuaternionRotation3D.cs
- NegatedCellConstant.cs
- AuthenticationServiceManager.cs
- ProgressBarHighlightConverter.cs
- MemberPath.cs
- SessionIDManager.cs
- CallbackValidator.cs
- ToolStripItemTextRenderEventArgs.cs
- DataTableTypeConverter.cs
- EnumBuilder.cs
- AmbiguousMatchException.cs
- VirtualPath.cs
- BaseDataBoundControl.cs
- XPathDocument.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- EventMappingSettings.cs
- NullToBooleanConverter.cs
- UnaryNode.cs
- SystemResources.cs
- TableTextElementCollectionInternal.cs
- AddingNewEventArgs.cs
- ProxySimple.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- HttpApplicationStateWrapper.cs
- XmlBinaryReaderSession.cs
- PrintingPermissionAttribute.cs
- ItemContainerGenerator.cs
- SourceSwitch.cs
- MachineSettingsSection.cs
- ParserExtension.cs
- IOThreadScheduler.cs
- Stylesheet.cs
- RightsManagementEncryptionTransform.cs
- XamlToRtfWriter.cs
- EntityCommandCompilationException.cs
- QueryResponse.cs
- ParallelTimeline.cs
- FixedElement.cs
- FeatureSupport.cs
- XmlValueConverter.cs
- ListViewAutomationPeer.cs
- ChildDocumentBlock.cs
- DataSysAttribute.cs
- SelectorItemAutomationPeer.cs
- Vertex.cs
- Operator.cs
- Pair.cs
- TreeNode.cs
- DataViewListener.cs
- WindowsListViewGroupHelper.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- HitTestDrawingContextWalker.cs
- MessageBuffer.cs
- TextContainer.cs
- ImageSourceConverter.cs
- XhtmlBasicControlAdapter.cs
- entityreference_tresulttype.cs
- ToolZone.cs
- LoginName.cs
- SafePEFileHandle.cs
- DbDataRecord.cs
- LayoutInformation.cs
- TextRange.cs
- MachineKeySection.cs
- NetPeerTcpBindingCollectionElement.cs
- PerfCounters.cs
- EntityDataSourceChangingEventArgs.cs
- EventWaitHandle.cs
- PageSettings.cs
- TypedReference.cs