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
- UrlMappingCollection.cs
- AuthenticationConfig.cs
- StylusTouchDevice.cs
- TdsEnums.cs
- ProfilePropertySettingsCollection.cs
- HtmlInputPassword.cs
- NamedObject.cs
- StateManagedCollection.cs
- ToolStripLabel.cs
- UIPermission.cs
- FindSimilarActivitiesVerb.cs
- ApplicationCommands.cs
- DesignerAutoFormatStyle.cs
- PassportPrincipal.cs
- RoleGroupCollection.cs
- SqlTriggerAttribute.cs
- BoolExpressionVisitors.cs
- WebPartConnectionsConfigureVerb.cs
- ClientProxyGenerator.cs
- AssertSection.cs
- XmlLanguageConverter.cs
- Win32MouseDevice.cs
- ReflectEventDescriptor.cs
- StorageMappingFragment.cs
- DbConnectionPoolIdentity.cs
- HttpListenerException.cs
- FormatControl.cs
- XmlFileEditor.cs
- Script.cs
- OleDbParameterCollection.cs
- ExcludePathInfo.cs
- MenuItemAutomationPeer.cs
- PriorityRange.cs
- SelectionEditingBehavior.cs
- DataObjectPastingEventArgs.cs
- GeneratedCodeAttribute.cs
- SystemTcpConnection.cs
- WindowsImpersonationContext.cs
- WindowsClaimSet.cs
- ConnectionManagementSection.cs
- HttpWebRequest.cs
- PinnedBufferMemoryStream.cs
- PropertyIDSet.cs
- PopOutPanel.cs
- Decoder.cs
- BuildProvider.cs
- DataObjectFieldAttribute.cs
- Multiply.cs
- ApplicationException.cs
- ThrowHelper.cs
- HttpCookieCollection.cs
- HyperLink.cs
- PersonalizationStateInfo.cs
- TextTreeTextNode.cs
- FigureHelper.cs
- LayoutDump.cs
- CodeParameterDeclarationExpressionCollection.cs
- EncodingTable.cs
- PropertyGridEditorPart.cs
- DesignerLoader.cs
- IISUnsafeMethods.cs
- QueueProcessor.cs
- TagNameToTypeMapper.cs
- ContainsRowNumberChecker.cs
- BehaviorEditorPart.cs
- ImageMap.cs
- Table.cs
- MaskInputRejectedEventArgs.cs
- SqlColumnizer.cs
- MetricEntry.cs
- ToolStripDropTargetManager.cs
- CmsInterop.cs
- XmlSchemaChoice.cs
- OperatingSystemVersionCheck.cs
- webbrowsersite.cs
- GrammarBuilderWildcard.cs
- LongSumAggregationOperator.cs
- CodeLinePragma.cs
- BrowserCapabilitiesCodeGenerator.cs
- ImageSourceValueSerializer.cs
- XmlReflectionMember.cs
- ServiceDiscoveryElement.cs
- EpmSyndicationContentSerializer.cs
- ComponentChangedEvent.cs
- HasCopySemanticsAttribute.cs
- ExpressionNormalizer.cs
- UpdateRecord.cs
- _Win32.cs
- ChangeProcessor.cs
- ListViewItem.cs
- SqlWebEventProvider.cs
- assemblycache.cs
- PriorityRange.cs
- RoleService.cs
- MethodAccessException.cs
- Utilities.cs
- ValidationEventArgs.cs
- graph.cs
- WebPartHeaderCloseVerb.cs
- BaseProcessProtocolHandler.cs