Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Base / System / ComponentModel / CurrentChangingEventManager.cs / 1 / CurrentChangingEventManager.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Manager for the CurrentChanging event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.ComponentModel; // ICollectionView.CurrentChanging using System.Windows; // WeakEventManager namespace System.ComponentModel { ////// Manager for the ICollectionView.CurrentChanging event. /// public class CurrentChangingEventManager : WeakEventManager { #region Constructors // // Constructors // private CurrentChangingEventManager() { } #endregion Constructors #region Public Methods // // Public Methods // ////// Add a listener to the given source's event. /// public static void AddListener(ICollectionView source, IWeakEventListener listener) { CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(ICollectionView source, IWeakEventListener 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.CurrentChanging += new CurrentChangingEventHandler(OnCurrentChanging); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { ICollectionView typedSource = (ICollectionView)source; typedSource.CurrentChanging -= new CurrentChangingEventHandler(OnCurrentChanging); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static CurrentChangingEventManager CurrentManager { get { Type managerType = typeof(CurrentChangingEventManager); CurrentChangingEventManager manager = (CurrentChangingEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new CurrentChangingEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for CurrentChanging event private void OnCurrentChanging(object sender, CurrentChangingEventArgs 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 CurrentChanging event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.ComponentModel; // ICollectionView.CurrentChanging using System.Windows; // WeakEventManager namespace System.ComponentModel { ////// Manager for the ICollectionView.CurrentChanging event. /// public class CurrentChangingEventManager : WeakEventManager { #region Constructors // // Constructors // private CurrentChangingEventManager() { } #endregion Constructors #region Public Methods // // Public Methods // ////// Add a listener to the given source's event. /// public static void AddListener(ICollectionView source, IWeakEventListener listener) { CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(ICollectionView source, IWeakEventListener 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.CurrentChanging += new CurrentChangingEventHandler(OnCurrentChanging); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { ICollectionView typedSource = (ICollectionView)source; typedSource.CurrentChanging -= new CurrentChangingEventHandler(OnCurrentChanging); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static CurrentChangingEventManager CurrentManager { get { Type managerType = typeof(CurrentChangingEventManager); CurrentChangingEventManager manager = (CurrentChangingEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new CurrentChangingEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for CurrentChanging event private void OnCurrentChanging(object sender, CurrentChangingEventArgs 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
- CalendarTable.cs
- Misc.cs
- StructuralCache.cs
- DocumentApplication.cs
- MessageQueuePermissionEntryCollection.cs
- GenericTypeParameterBuilder.cs
- TableParagraph.cs
- BrowserDefinition.cs
- PersonalizationState.cs
- MessageQueueAccessControlEntry.cs
- IndexedSelectQueryOperator.cs
- PersianCalendar.cs
- SQLRoleProvider.cs
- List.cs
- ITreeGenerator.cs
- RSAPKCS1SignatureFormatter.cs
- SqlUtils.cs
- DefaultMergeHelper.cs
- FastPropertyAccessor.cs
- SerializationAttributes.cs
- ConfigurationException.cs
- ToolStripSettings.cs
- FixedStringLookup.cs
- Constraint.cs
- MSAANativeProvider.cs
- SecurityTokenParameters.cs
- DataSourceProvider.cs
- XmlILOptimizerVisitor.cs
- NullableBoolConverter.cs
- PersianCalendar.cs
- WebExceptionStatus.cs
- hebrewshape.cs
- HtmlButton.cs
- PreservationFileReader.cs
- DataContractSerializerElement.cs
- Visual3DCollection.cs
- GetPageCompletedEventArgs.cs
- Substitution.cs
- UriSection.cs
- DataGridItemAttachedStorage.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- _AutoWebProxyScriptEngine.cs
- SemanticBasicElement.cs
- ImageSource.cs
- SqlParameter.cs
- OrthographicCamera.cs
- AdapterDictionary.cs
- Control.cs
- SortAction.cs
- SegmentInfo.cs
- ScriptIgnoreAttribute.cs
- CodeDirectionExpression.cs
- DbConnectionInternal.cs
- EntryPointNotFoundException.cs
- SelectionEditor.cs
- ImageListStreamer.cs
- CollectionEditVerbManager.cs
- SqlDataSourceFilteringEventArgs.cs
- TaskFormBase.cs
- sqlnorm.cs
- StyleTypedPropertyAttribute.cs
- DbProviderServices.cs
- XPathAxisIterator.cs
- BindingExpressionBase.cs
- StaticContext.cs
- EdgeModeValidation.cs
- ToolBarPanel.cs
- TableLayoutPanelCodeDomSerializer.cs
- EntityConnection.cs
- ImageList.cs
- ScrollChrome.cs
- LingerOption.cs
- ObjectListComponentEditor.cs
- SqlEnums.cs
- ImageBrush.cs
- GestureRecognitionResult.cs
- RequestQueryProcessor.cs
- _Rfc2616CacheValidators.cs
- ComponentEditorPage.cs
- ServiceSecurityAuditBehavior.cs
- ModelItemCollectionImpl.cs
- StorageAssociationSetMapping.cs
- Currency.cs
- XmlSchemaAttributeGroup.cs
- EdmScalarPropertyAttribute.cs
- EndpointNotFoundException.cs
- SectionInformation.cs
- CachedPathData.cs
- KnownBoxes.cs
- CaseInsensitiveOrdinalStringComparer.cs
- CellLabel.cs
- ServiceParser.cs
- AssemblyEvidenceFactory.cs
- UInt64Converter.cs
- EventLogStatus.cs
- DesignerAutoFormatCollection.cs
- PropertyOverridesDialog.cs
- WebScriptClientGenerator.cs
- ParameterCollection.cs
- SymmetricCryptoHandle.cs