Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / ComponentModel / CurrentChangedEventManager.cs / 1305600 / CurrentChangedEventManager.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Manager for the CurrentChanged event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.Windows; // WeakEventManager namespace System.ComponentModel { ////// Manager for the ICollectionView.CurrentChanged event. /// public class CurrentChangedEventManager : WeakEventManager { #region Constructors // // Constructors // private CurrentChangedEventManager() { } #endregion Constructors #region Public Methods // // Public Methods // ////// Add a listener to the given source's event. /// public static void AddListener(ICollectionView source, IWeakEventListener listener) { if (source == null) throw new ArgumentNullException("source"); if (listener == null) throw new ArgumentNullException("listener"); CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(ICollectionView source, IWeakEventListener listener) { /* for app-compat, allow RemoveListener(null, x) - it's a no-op (see Dev10 796788) if (source == null) throw new ArgumentNullException("source"); */ if (listener == null) throw new ArgumentNullException("listener"); CurrentManager.ProtectedRemoveListener(source, listener); } #endregion Public Methods #region Protected Methods // // Protected Methods // ////// Listen to the given source for the event. /// protected override void StartListening(object source) { ICollectionView typedSource = (ICollectionView)source; typedSource.CurrentChanged += new EventHandler(OnCurrentChanged); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { ICollectionView typedSource = (ICollectionView)source; typedSource.CurrentChanged -= new EventHandler(OnCurrentChanged); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static CurrentChangedEventManager CurrentManager { get { Type managerType = typeof(CurrentChangedEventManager); CurrentChangedEventManager manager = (CurrentChangedEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new CurrentChangedEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for CurrentChanged event private void OnCurrentChanged(object sender, EventArgs args) { DeliverEvent(sender, args); } #endregion Private Methods } } // 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
- CompModSwitches.cs
- UnauthorizedAccessException.cs
- MailSettingsSection.cs
- ConstructorNeedsTagAttribute.cs
- CodeExpressionCollection.cs
- XmlSerializableWriter.cs
- ConcurrentQueue.cs
- FormsAuthenticationTicket.cs
- ResourceAttributes.cs
- DeviceContexts.cs
- JoinTreeSlot.cs
- DataTransferEventArgs.cs
- ChtmlTextWriter.cs
- PageCodeDomTreeGenerator.cs
- Int32Converter.cs
- TransportSecurityProtocolFactory.cs
- XmlNodeChangedEventArgs.cs
- CompositionDesigner.cs
- MemberDescriptor.cs
- ButtonChrome.cs
- ScrollViewer.cs
- ComMethodElementCollection.cs
- FixedFindEngine.cs
- FilteredXmlReader.cs
- XmlObjectSerializerReadContext.cs
- StyleTypedPropertyAttribute.cs
- FixedSOMTextRun.cs
- RuntimeEnvironment.cs
- ArglessEventHandlerProxy.cs
- SqlCharStream.cs
- NullableIntMinMaxAggregationOperator.cs
- XmlDataProvider.cs
- ToolboxDataAttribute.cs
- BindStream.cs
- ScrollPattern.cs
- ResXResourceReader.cs
- PolyQuadraticBezierSegment.cs
- AutomationPatternInfo.cs
- HostedElements.cs
- AssertSection.cs
- basenumberconverter.cs
- VariableBinder.cs
- KeyValuePair.cs
- AesCryptoServiceProvider.cs
- RegexInterpreter.cs
- BuildResult.cs
- StaticExtensionConverter.cs
- InfoCardBinaryReader.cs
- ControlLocalizer.cs
- ScriptingProfileServiceSection.cs
- SizeIndependentAnimationStorage.cs
- ResolvedKeyFrameEntry.cs
- ProvidersHelper.cs
- MarshalByValueComponent.cs
- WinInet.cs
- EdmToObjectNamespaceMap.cs
- DefaultTypeArgumentAttribute.cs
- SafeCryptHandles.cs
- AppLevelCompilationSectionCache.cs
- SecurityPermission.cs
- WindowsListViewSubItem.cs
- PagesSection.cs
- SqlDataSourceStatusEventArgs.cs
- StylusTouchDevice.cs
- ClrPerspective.cs
- XmlMapping.cs
- XmlSchemaChoice.cs
- tabpagecollectioneditor.cs
- ShapingWorkspace.cs
- ConstantProjectedSlot.cs
- TextTreeTextBlock.cs
- CollectionBase.cs
- PrimitiveSchema.cs
- Viewport3DVisual.cs
- ValueQuery.cs
- SimpleNameService.cs
- SQLInt16Storage.cs
- ShapingEngine.cs
- DataTableTypeConverter.cs
- DataBinding.cs
- WebSysDisplayNameAttribute.cs
- Pts.cs
- ScrollPattern.cs
- NumericUpDownAccelerationCollection.cs
- AppDomainCompilerProxy.cs
- TabPage.cs
- StorageComplexPropertyMapping.cs
- URLAttribute.cs
- XmlObjectSerializerWriteContextComplex.cs
- TextLineBreak.cs
- oledbconnectionstring.cs
- CallbackValidator.cs
- ArrayTypeMismatchException.cs
- SearchForVirtualItemEventArgs.cs
- HttpCacheVary.cs
- HMACSHA384.cs
- ParameterReplacerVisitor.cs
- NameValuePair.cs
- WebHttpSecurityElement.cs
- OleDbParameterCollection.cs