Code:
/ 4.0 / 4.0 / 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. //---------------------------------------------------------------------------- // //// 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
- NameObjectCollectionBase.cs
- ContactManager.cs
- ChtmlCalendarAdapter.cs
- NamedPipeTransportSecurity.cs
- GridViewColumnCollectionChangedEventArgs.cs
- XmlWriterDelegator.cs
- MenuItemCollection.cs
- TrackBarRenderer.cs
- MultipartContentParser.cs
- FileIOPermission.cs
- LightweightCodeGenerator.cs
- WebEventCodes.cs
- SoapMessage.cs
- FlowDocumentPaginator.cs
- MenuCommand.cs
- OrderingQueryOperator.cs
- X509InitiatorCertificateClientElement.cs
- CultureData.cs
- WebPageTraceListener.cs
- SynchronizingStream.cs
- SchemaElementLookUpTable.cs
- PerformanceCountersElement.cs
- Exceptions.cs
- WebControlToolBoxItem.cs
- PropertyTab.cs
- ComponentCollection.cs
- HtmlImage.cs
- DataControlPagerLinkButton.cs
- BypassElement.cs
- RectangleGeometry.cs
- xmlfixedPageInfo.cs
- LinkLabel.cs
- ListViewEditEventArgs.cs
- XomlDesignerLoader.cs
- RepeaterItemEventArgs.cs
- XNodeValidator.cs
- IdentifierElement.cs
- PrimitiveCodeDomSerializer.cs
- AttributeQuery.cs
- GridViewAutomationPeer.cs
- DrawListViewSubItemEventArgs.cs
- CompilerResults.cs
- MembershipValidatePasswordEventArgs.cs
- DataTableCollection.cs
- ButtonBaseAutomationPeer.cs
- UnsafeNativeMethods.cs
- WebHeaderCollection.cs
- InfocardClientCredentials.cs
- QuaternionAnimation.cs
- ExtensibleSyndicationObject.cs
- ContainerFilterService.cs
- WebPartManager.cs
- DateTimeOffset.cs
- MSAAWinEventWrap.cs
- HybridDictionary.cs
- OutputCacheProfile.cs
- CategoryGridEntry.cs
- ImageMap.cs
- Application.cs
- UnaryNode.cs
- LockRecoveryTask.cs
- PathSegmentCollection.cs
- EventRoute.cs
- RichTextBoxConstants.cs
- TextAnchor.cs
- DataFormats.cs
- complextypematerializer.cs
- Encoder.cs
- VisualCollection.cs
- CriticalFinalizerObject.cs
- RuleEngine.cs
- ExtensibleClassFactory.cs
- shaperfactoryquerycachekey.cs
- QueryOptionExpression.cs
- EventHandlingScope.cs
- WebControl.cs
- HtmlWindow.cs
- SimpleBitVector32.cs
- FontUnit.cs
- BamlRecords.cs
- FusionWrap.cs
- AnonymousIdentificationSection.cs
- httpstaticobjectscollection.cs
- OracleBoolean.cs
- datacache.cs
- ListViewGroupConverter.cs
- InstanceOwner.cs
- QueryExecutionOption.cs
- FontStyleConverter.cs
- UshortList2.cs
- FtpWebRequest.cs
- TraversalRequest.cs
- StylusButtonCollection.cs
- CurrentChangingEventManager.cs
- ViewStateException.cs
- UpDownEvent.cs
- DataViewSettingCollection.cs
- CatalogUtil.cs
- PtsHelper.cs
- TextParaClient.cs