Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Base / System / Collections / ObjectModel / ReadOnlyObservableCollection.cs / 1 / ReadOnlyObservableCollection.cs
//---------------------------------------------------------------------------- // //// Copyright (C) 2003 by Microsoft Corporation. All rights reserved. // // // // Description: Read-only wrapper around an ObservableCollection. // // See spec at http://avalon/connecteddata/Specs/Collection%20Interfaces.mht // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.ComponentModel; namespace System.Collections.ObjectModel { ////// Read-only wrapper around an ObservableCollection. /// [Serializable()] public class ReadOnlyObservableCollection: ReadOnlyCollection , INotifyCollectionChanged, INotifyPropertyChanged { #region Constructors //----------------------------------------------------- // // Constructors // //----------------------------------------------------- /// /// Initializes a new instance of ReadOnlyObservableCollection that /// wraps the given ObservableCollection. /// public ReadOnlyObservableCollection(ObservableCollectionlist) : base(list) { ((INotifyCollectionChanged)Items).CollectionChanged += new NotifyCollectionChangedEventHandler(HandleCollectionChanged); ((INotifyPropertyChanged)Items).PropertyChanged += new PropertyChangedEventHandler(HandlePropertyChanged); } #endregion Constructors #region Interfaces //------------------------------------------------------ // // Interfaces // //----------------------------------------------------- #region INotifyCollectionChanged /// /// CollectionChanged event (per event NotifyCollectionChangedEventHandler INotifyCollectionChanged.CollectionChanged { add { CollectionChanged += value; } remove { CollectionChanged -= value; } } ///). /// /// Occurs when the collection changes, either by adding or removing an item. /// ////// see [field:NonSerializedAttribute()] protected virtual event NotifyCollectionChangedEventHandler CollectionChanged; ////// /// raise CollectionChanged event to any listeners /// protected virtual void OnCollectionChanged(NotifyCollectionChangedEventArgs args) { if (CollectionChanged != null) { CollectionChanged(this, args); } } #endregion INotifyCollectionChanged #region INotifyPropertyChanged ////// PropertyChanged event (per event PropertyChangedEventHandler INotifyPropertyChanged.PropertyChanged { add { PropertyChanged += value; } remove { PropertyChanged -= value; } } ///). /// /// Occurs when a property changes. /// ////// see [field:NonSerializedAttribute()] protected virtual event PropertyChangedEventHandler PropertyChanged; ////// /// raise PropertyChanged event to any listeners /// protected virtual void OnPropertyChanged(PropertyChangedEventArgs args) { if (PropertyChanged != null) { PropertyChanged(this, args); } } #endregion INotifyPropertyChanged #endregion Interfaces #region Private Methods //------------------------------------------------------ // // Private Methods // //------------------------------------------------------ // forward CollectionChanged events from the base list to our listeners void HandleCollectionChanged(object sender, NotifyCollectionChangedEventArgs e) { OnCollectionChanged(e); } // forward PropertyChanged events from the base list to our listeners void HandlePropertyChanged(object sender, PropertyChangedEventArgs e) { OnPropertyChanged(e); } #endregion Private Methods #region Private Fields //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) 2003 by Microsoft Corporation. All rights reserved. // // // // Description: Read-only wrapper around an ObservableCollection. // // See spec at http://avalon/connecteddata/Specs/Collection%20Interfaces.mht // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.ComponentModel; namespace System.Collections.ObjectModel { ////// Read-only wrapper around an ObservableCollection. /// [Serializable()] public class ReadOnlyObservableCollection: ReadOnlyCollection , INotifyCollectionChanged, INotifyPropertyChanged { #region Constructors //----------------------------------------------------- // // Constructors // //----------------------------------------------------- /// /// Initializes a new instance of ReadOnlyObservableCollection that /// wraps the given ObservableCollection. /// public ReadOnlyObservableCollection(ObservableCollectionlist) : base(list) { ((INotifyCollectionChanged)Items).CollectionChanged += new NotifyCollectionChangedEventHandler(HandleCollectionChanged); ((INotifyPropertyChanged)Items).PropertyChanged += new PropertyChangedEventHandler(HandlePropertyChanged); } #endregion Constructors #region Interfaces //------------------------------------------------------ // // Interfaces // //----------------------------------------------------- #region INotifyCollectionChanged /// /// CollectionChanged event (per event NotifyCollectionChangedEventHandler INotifyCollectionChanged.CollectionChanged { add { CollectionChanged += value; } remove { CollectionChanged -= value; } } ///). /// /// Occurs when the collection changes, either by adding or removing an item. /// ////// see [field:NonSerializedAttribute()] protected virtual event NotifyCollectionChangedEventHandler CollectionChanged; ////// /// raise CollectionChanged event to any listeners /// protected virtual void OnCollectionChanged(NotifyCollectionChangedEventArgs args) { if (CollectionChanged != null) { CollectionChanged(this, args); } } #endregion INotifyCollectionChanged #region INotifyPropertyChanged ////// PropertyChanged event (per event PropertyChangedEventHandler INotifyPropertyChanged.PropertyChanged { add { PropertyChanged += value; } remove { PropertyChanged -= value; } } ///). /// /// Occurs when a property changes. /// ////// see [field:NonSerializedAttribute()] protected virtual event PropertyChangedEventHandler PropertyChanged; ////// /// raise PropertyChanged event to any listeners /// protected virtual void OnPropertyChanged(PropertyChangedEventArgs args) { if (PropertyChanged != null) { PropertyChanged(this, args); } } #endregion INotifyPropertyChanged #endregion Interfaces #region Private Methods //------------------------------------------------------ // // Private Methods // //------------------------------------------------------ // forward CollectionChanged events from the base list to our listeners void HandleCollectionChanged(object sender, NotifyCollectionChangedEventArgs e) { OnCollectionChanged(e); } // forward PropertyChanged events from the base list to our listeners void HandlePropertyChanged(object sender, PropertyChangedEventArgs e) { OnPropertyChanged(e); } #endregion Private Methods #region Private Fields //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #endregion Private Fields } } // 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
- EditorPartChrome.cs
- ApplicationFileCodeDomTreeGenerator.cs
- ScriptReferenceEventArgs.cs
- ChangeProcessor.cs
- ErrorHandlerModule.cs
- OptionalColumn.cs
- SoapObjectInfo.cs
- MultiDataTrigger.cs
- InvalidPropValue.cs
- SubstitutionList.cs
- WebUtility.cs
- WebBrowserNavigatingEventHandler.cs
- AlphabeticalEnumConverter.cs
- ToolStripDropTargetManager.cs
- DES.cs
- HtmlInputCheckBox.cs
- GeneralTransformCollection.cs
- CLSCompliantAttribute.cs
- RegexBoyerMoore.cs
- CodeExporter.cs
- StreamUpdate.cs
- UnionQueryOperator.cs
- CombinedGeometry.cs
- BufferCache.cs
- PeerInvitationResponse.cs
- EdmComplexPropertyAttribute.cs
- WhitespaceSignificantCollectionAttribute.cs
- X509RecipientCertificateClientElement.cs
- unsafenativemethodstextservices.cs
- EarlyBoundInfo.cs
- HandlerBase.cs
- BaseServiceProvider.cs
- XmlDataLoader.cs
- ImmComposition.cs
- Size3DValueSerializer.cs
- AlphabeticalEnumConverter.cs
- WebPartDescription.cs
- SHA1.cs
- FindCompletedEventArgs.cs
- VerificationAttribute.cs
- BindingNavigator.cs
- ImageAutomationPeer.cs
- QuaternionValueSerializer.cs
- ValidateNames.cs
- Rules.cs
- MetaModel.cs
- SchemaObjectWriter.cs
- TextTabProperties.cs
- Menu.cs
- Fault.cs
- DataSourceControlBuilder.cs
- AssemblyResourceLoader.cs
- HostedBindingBehavior.cs
- HostProtectionException.cs
- RoamingStoreFile.cs
- ControlBuilderAttribute.cs
- UIElement3D.cs
- MaterialCollection.cs
- ZipIOModeEnforcingStream.cs
- HttpHandlerActionCollection.cs
- TypeUsage.cs
- TextElementCollectionHelper.cs
- DeclarativeCatalogPart.cs
- EventRouteFactory.cs
- FileVersion.cs
- QuestionEventArgs.cs
- PasswordPropertyTextAttribute.cs
- MailMessageEventArgs.cs
- SessionState.cs
- StylusShape.cs
- WebPartMenuStyle.cs
- SafeViewOfFileHandle.cs
- HandoffBehavior.cs
- PathFigureCollection.cs
- RtfNavigator.cs
- TextureBrush.cs
- DynamicRenderer.cs
- CfgParser.cs
- Vector3DIndependentAnimationStorage.cs
- WCFBuildProvider.cs
- tabpagecollectioneditor.cs
- MultiTrigger.cs
- DSACryptoServiceProvider.cs
- BitmapData.cs
- WebPartVerbsEventArgs.cs
- CatalogZoneBase.cs
- RoutedCommand.cs
- GradientBrush.cs
- BindStream.cs
- CultureInfoConverter.cs
- TreeViewEvent.cs
- PriorityRange.cs
- GeneralTransform3DTo2D.cs
- ClientUrlResolverWrapper.cs
- BuildManager.cs
- FlowDocumentReaderAutomationPeer.cs
- ListBoxItem.cs
- RelationshipConverter.cs
- GestureRecognizer.cs
- LeftCellWrapper.cs