Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / 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 : [....] - 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TargetFrameworkUtil.cs
- Pen.cs
- ContextMenu.cs
- DictionaryEntry.cs
- SimpleWebHandlerParser.cs
- VerticalAlignConverter.cs
- AsyncInvokeContext.cs
- XsltSettings.cs
- WebPartChrome.cs
- IInstanceContextProvider.cs
- FileAuthorizationModule.cs
- MultiBinding.cs
- CodeAttributeArgument.cs
- PolyLineSegmentFigureLogic.cs
- CancellationToken.cs
- EmissiveMaterial.cs
- DesignerVerbToolStripMenuItem.cs
- HttpAsyncResult.cs
- TextDecoration.cs
- ListenerElementsCollection.cs
- UnsafePeerToPeerMethods.cs
- XmlSchemaComplexContentExtension.cs
- NativeRecognizer.cs
- ExtenderProvidedPropertyAttribute.cs
- MetadataArtifactLoader.cs
- CompilationSection.cs
- CommandDevice.cs
- ImplicitInputBrush.cs
- PolyBezierSegmentFigureLogic.cs
- ModifierKeysValueSerializer.cs
- Cursors.cs
- SoapObjectReader.cs
- TimeSpanStorage.cs
- FileSystemInfo.cs
- WSTrustFeb2005.cs
- TableItemProviderWrapper.cs
- odbcmetadatacolumnnames.cs
- DataGridViewCheckBoxColumn.cs
- ExtensionWindow.cs
- EqualityComparer.cs
- UrlAuthorizationModule.cs
- ManipulationPivot.cs
- ReadOnlyDataSourceView.cs
- ChannelToken.cs
- InternalDuplexBindingElement.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- DataStorage.cs
- COAUTHINFO.cs
- HandledEventArgs.cs
- COM2IProvidePropertyBuilderHandler.cs
- NullableDoubleAverageAggregationOperator.cs
- TypeViewSchema.cs
- PersonalizationProviderCollection.cs
- Themes.cs
- ReliableMessagingVersion.cs
- NamespaceList.cs
- LockedBorderGlyph.cs
- XmlNavigatorFilter.cs
- IfJoinedCondition.cs
- PolicyFactory.cs
- RawKeyboardInputReport.cs
- Soap11ServerProtocol.cs
- UnsafeNativeMethods.cs
- TextEffect.cs
- COM2ColorConverter.cs
- COM2EnumConverter.cs
- TextServicesManager.cs
- AddressHeaderCollection.cs
- HttpHandlerAction.cs
- DataObjectCopyingEventArgs.cs
- HandledEventArgs.cs
- TimeZoneInfo.cs
- DelegatingTypeDescriptionProvider.cs
- CustomAttributeSerializer.cs
- ManagementObject.cs
- Stack.cs
- TemporaryBitmapFile.cs
- HttpContext.cs
- AssemblyBuilderData.cs
- Decorator.cs
- DrawingContext.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- BidOverLoads.cs
- DoubleAnimationUsingKeyFrames.cs
- QueueProcessor.cs
- DynamicPhysicalDiscoSearcher.cs
- AnchorEditor.cs
- StateMachineTimers.cs
- LineSegment.cs
- _SSPISessionCache.cs
- CopyOnWriteList.cs
- WorkerRequest.cs
- ActivityXRefPropertyEditor.cs
- MessageBuilder.cs
- BooleanExpr.cs
- PreloadHost.cs
- SerialErrors.cs
- SqlBulkCopyColumnMappingCollection.cs
- TypeHelper.cs
- FlowchartStart.xaml.cs