Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / DrawingCollection.cs / 1305600 / 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
- SecurityElement.cs
- DataControlFieldCollection.cs
- TreeViewTemplateSelector.cs
- HelpKeywordAttribute.cs
- NullRuntimeConfig.cs
- HtmlInputControl.cs
- EntryPointNotFoundException.cs
- WebPartEditorCancelVerb.cs
- ExtensionSimplifierMarkupObject.cs
- PolicyValidator.cs
- DashStyle.cs
- TaiwanCalendar.cs
- KnownBoxes.cs
- HtmlFormWrapper.cs
- ConsoleKeyInfo.cs
- BitmapFrameDecode.cs
- CodeNamespaceCollection.cs
- While.cs
- DecimalAnimationUsingKeyFrames.cs
- WebDescriptionAttribute.cs
- HttpClientProtocol.cs
- IOException.cs
- SecurityHeaderElementInferenceEngine.cs
- EntityContainerAssociationSetEnd.cs
- CaseCqlBlock.cs
- MetadataItem.cs
- HtmlShim.cs
- WindowsListViewGroup.cs
- ListDictionaryInternal.cs
- IdentityReference.cs
- MemberInitExpression.cs
- XPathNodeList.cs
- AutomationPeer.cs
- OrthographicCamera.cs
- ToolStripScrollButton.cs
- EncryptedReference.cs
- HelpKeywordAttribute.cs
- Help.cs
- SubstitutionResponseElement.cs
- WrappedIUnknown.cs
- PersonalizationAdministration.cs
- ZipIOCentralDirectoryBlock.cs
- LongValidator.cs
- SectionInformation.cs
- IsolatedStorageFile.cs
- TextBox.cs
- XmlEntityReference.cs
- Token.cs
- ContentWrapperAttribute.cs
- ClientUIRequest.cs
- TabPage.cs
- ScriptingScriptResourceHandlerSection.cs
- AggregateException.cs
- SafeBitVector32.cs
- FilterableData.cs
- ProtocolsConfiguration.cs
- SoapAttributeAttribute.cs
- MdiWindowListStrip.cs
- TransactionState.cs
- CacheAxisQuery.cs
- WsdlServiceChannelBuilder.cs
- SystemThemeKey.cs
- Graphics.cs
- XLinq.cs
- GenericEnumerator.cs
- LogStore.cs
- RSAOAEPKeyExchangeFormatter.cs
- StateMachine.cs
- RowToParametersTransformer.cs
- ProcessInfo.cs
- DataRowView.cs
- XmlTextReaderImpl.cs
- ParallelLoopState.cs
- UdpDiscoveryMessageFilter.cs
- Compress.cs
- DataTablePropertyDescriptor.cs
- XmlExtensionFunction.cs
- PipelineModuleStepContainer.cs
- XPathNodeInfoAtom.cs
- StoreItemCollection.cs
- SelectedDatesCollection.cs
- DataBoundControlAdapter.cs
- MetadataPropertyvalue.cs
- WebPartConnectionsCancelEventArgs.cs
- DockingAttribute.cs
- GACIdentityPermission.cs
- CompilerScope.cs
- CalendarDataBindingHandler.cs
- HMACSHA256.cs
- ToolStripSplitStackLayout.cs
- SHA256.cs
- PageHandlerFactory.cs
- TrayIconDesigner.cs
- ObjectSelectorEditor.cs
- SignatureDescription.cs
- OracleParameterBinding.cs
- ViewLoader.cs
- UpDownBase.cs
- GlyphShapingProperties.cs
- BamlLocalizableResource.cs