Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Base / System / ComponentModel / CurrentChangingEventArgs.cs / 1 / CurrentChangingEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: CurrentChanging event arguments // //--------------------------------------------------------------------------- using System; using System.Windows; namespace System.ComponentModel { ////// Arguments for the CurrentChanging event. /// A collection that supports ICollectionView raises this event /// whenever the CurrentItem is changing, or when the contents /// of the collection has been reset. /// By default, the event is cancelable when CurrentChange is /// caused by a move current operation and uncancelable when /// caused by an irreversable collection change operation. /// public class CurrentChangingEventArgs : EventArgs { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- ////// Construct a cancelable CurrentChangingEventArgs that is used /// to notify listeners when CurrentItem is about to change. /// public CurrentChangingEventArgs() { Initialize(true); } ////// Construct a CurrentChangingEventArgs that is used to notify listeners when CurrentItem is about to change. /// /// if false, setting Cancel to true will cause an InvalidOperationException to be thrown. public CurrentChangingEventArgs(bool isCancelable) { Initialize(isCancelable); } private void Initialize(bool isCancelable) { _isCancelable = isCancelable; } //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- ////// If this event can be canceled. When this is False, setting Cancel to True will cause an InvalidOperationException to be thrown. /// public bool IsCancelable { get { return _isCancelable; } } ////// When set to true, this event will be canceled. /// ////// If IsCancelable is False, setting this value to True will cause an InvalidOperationException to be thrown. /// public bool Cancel { get { return _cancel; } set { if (IsCancelable) { _cancel = value; } else if (value) { throw new InvalidOperationException(SR.Get(SRID.CurrentChangingCannotBeCanceled)); } } } //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ private bool _cancel = false; private bool _isCancelable; } ////// The delegate to use for handlers that receive the CurrentChanging event. /// public delegate void CurrentChangingEventHandler(object sender, CurrentChangingEventArgs e); } // 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: CurrentChanging event arguments // //--------------------------------------------------------------------------- using System; using System.Windows; namespace System.ComponentModel { ////// Arguments for the CurrentChanging event. /// A collection that supports ICollectionView raises this event /// whenever the CurrentItem is changing, or when the contents /// of the collection has been reset. /// By default, the event is cancelable when CurrentChange is /// caused by a move current operation and uncancelable when /// caused by an irreversable collection change operation. /// public class CurrentChangingEventArgs : EventArgs { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- ////// Construct a cancelable CurrentChangingEventArgs that is used /// to notify listeners when CurrentItem is about to change. /// public CurrentChangingEventArgs() { Initialize(true); } ////// Construct a CurrentChangingEventArgs that is used to notify listeners when CurrentItem is about to change. /// /// if false, setting Cancel to true will cause an InvalidOperationException to be thrown. public CurrentChangingEventArgs(bool isCancelable) { Initialize(isCancelable); } private void Initialize(bool isCancelable) { _isCancelable = isCancelable; } //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- ////// If this event can be canceled. When this is False, setting Cancel to True will cause an InvalidOperationException to be thrown. /// public bool IsCancelable { get { return _isCancelable; } } ////// When set to true, this event will be canceled. /// ////// If IsCancelable is False, setting this value to True will cause an InvalidOperationException to be thrown. /// public bool Cancel { get { return _cancel; } set { if (IsCancelable) { _cancel = value; } else if (value) { throw new InvalidOperationException(SR.Get(SRID.CurrentChangingCannotBeCanceled)); } } } //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ private bool _cancel = false; private bool _isCancelable; } ////// The delegate to use for handlers that receive the CurrentChanging event. /// public delegate void CurrentChangingEventHandler(object sender, CurrentChangingEventArgs e); } // 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
- EnumValAlphaComparer.cs
- VSDExceptions.cs
- MergeLocalizationDirectives.cs
- Misc.cs
- TimeZone.cs
- BasicCellRelation.cs
- EncryptedType.cs
- SmtpAuthenticationManager.cs
- Int16KeyFrameCollection.cs
- ping.cs
- Accessible.cs
- FixedFlowMap.cs
- ImageButton.cs
- User.cs
- SafeNativeMethods.cs
- EDesignUtil.cs
- InstancePersistenceException.cs
- CommandEventArgs.cs
- DockingAttribute.cs
- AddingNewEventArgs.cs
- SafeSecurityHandles.cs
- EntitySqlQueryCacheKey.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- DataRecordInternal.cs
- QueryContinueDragEventArgs.cs
- FormViewDeletedEventArgs.cs
- AssemblySettingAttributes.cs
- InvalidOperationException.cs
- SpellerStatusTable.cs
- storepermissionattribute.cs
- CodeTryCatchFinallyStatement.cs
- FrameworkElementFactoryMarkupObject.cs
- SqlNodeAnnotations.cs
- XDeferredAxisSource.cs
- DbConnectionPool.cs
- BitmapCodecInfoInternal.cs
- XmlNullResolver.cs
- cookiecollection.cs
- ValidationErrorEventArgs.cs
- TypedTableBase.cs
- DataServiceStreamResponse.cs
- XamlTypeMapper.cs
- DataGridViewColumnStateChangedEventArgs.cs
- ClientOptions.cs
- ImmutableCollection.cs
- CompilerGlobalScopeAttribute.cs
- ObjectDataSourceFilteringEventArgs.cs
- TypeLibConverter.cs
- NavigationService.cs
- SqlServices.cs
- ProbeMatchesCD1.cs
- CallbackException.cs
- IndexedSelectQueryOperator.cs
- UInt16Converter.cs
- PresentationSource.cs
- ResourcesChangeInfo.cs
- PeerInvitationResponse.cs
- NullableIntAverageAggregationOperator.cs
- BinaryMessageEncodingElement.cs
- DefaultSerializationProviderAttribute.cs
- DataKeyCollection.cs
- PageStatePersister.cs
- CompilerTypeWithParams.cs
- EqualityComparer.cs
- CardSpaceSelector.cs
- LeafCellTreeNode.cs
- ObjectSet.cs
- FileEnumerator.cs
- Configuration.cs
- Maps.cs
- NavigationFailedEventArgs.cs
- MobilePage.cs
- TemplateBaseAction.cs
- DataTableClearEvent.cs
- SystemIPv4InterfaceProperties.cs
- dataSvcMapFileLoader.cs
- CellNormalizer.cs
- Icon.cs
- ValueHandle.cs
- XmlReader.cs
- EventsTab.cs
- CorrelationHandle.cs
- TrustManagerPromptUI.cs
- XmlDictionary.cs
- WebPartVerbsEventArgs.cs
- DecoderFallback.cs
- JapaneseLunisolarCalendar.cs
- XmlConvert.cs
- EntityContainerEmitter.cs
- OperatorExpressions.cs
- WmlPageAdapter.cs
- FontFamilyIdentifier.cs
- MemberRestriction.cs
- DbMetaDataColumnNames.cs
- RemotingServices.cs
- CompilerError.cs
- Label.cs
- ReaderOutput.cs
- RadioButtonDesigner.cs
- DecoderReplacementFallback.cs