Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- InsufficientMemoryException.cs
- DateTimeValueSerializerContext.cs
- Span.cs
- GPRECTF.cs
- LockCookie.cs
- OutputCacheModule.cs
- SharedStatics.cs
- MeasureItemEvent.cs
- DataListDesigner.cs
- _KerberosClient.cs
- UpDownEvent.cs
- SQLString.cs
- SafeMILHandle.cs
- FormsAuthentication.cs
- DataBoundControlAdapter.cs
- XmlCharType.cs
- FrameAutomationPeer.cs
- DrawingAttributesDefaultValueFactory.cs
- DataKeyCollection.cs
- Label.cs
- FactoryGenerator.cs
- EncoderFallback.cs
- WebPartsSection.cs
- TakeQueryOptionExpression.cs
- EditorPartCollection.cs
- SslStream.cs
- CaseStatement.cs
- SelectionListComponentEditor.cs
- TextRangeEditLists.cs
- HttpCachePolicyElement.cs
- WebPartCloseVerb.cs
- NameObjectCollectionBase.cs
- ProfileManager.cs
- TableItemStyle.cs
- PersonalizationProvider.cs
- HttpHandlerAction.cs
- DataObjectPastingEventArgs.cs
- EntityWrapperFactory.cs
- GlyphElement.cs
- DocumentSchemaValidator.cs
- ObjectDataSourceEventArgs.cs
- EmptyStringExpandableObjectConverter.cs
- FrameworkContentElementAutomationPeer.cs
- Pen.cs
- AuthenticatedStream.cs
- __Error.cs
- MetadataCacheItem.cs
- BitmapEffectDrawingContextState.cs
- MdiWindowListItemConverter.cs
- RoutedUICommand.cs
- NameValueConfigurationCollection.cs
- UpDownEvent.cs
- ClientConfigurationSystem.cs
- NamedPipeAppDomainProtocolHandler.cs
- ScriptReferenceEventArgs.cs
- EventKeyword.cs
- PathSegmentCollection.cs
- SQLDateTime.cs
- Process.cs
- GenericRootAutomationPeer.cs
- ImpersonationContext.cs
- MappingModelBuildProvider.cs
- WebMessageEncoderFactory.cs
- BuildProvider.cs
- TreeNodeBindingCollection.cs
- StylusOverProperty.cs
- TaiwanLunisolarCalendar.cs
- WriterOutput.cs
- SamlAttribute.cs
- RepeatEnumerable.cs
- ContentValidator.cs
- BookmarkManager.cs
- CommonServiceBehaviorElement.cs
- ResponseStream.cs
- XmlSchemaAttribute.cs
- SmiTypedGetterSetter.cs
- CallbackValidatorAttribute.cs
- dtdvalidator.cs
- XmlComment.cs
- DeflateEmulationStream.cs
- TypeSystemHelpers.cs
- PropertyStore.cs
- Marshal.cs
- XMLDiffLoader.cs
- LogRecordSequence.cs
- TcpTransportElement.cs
- RemotingServices.cs
- Interlocked.cs
- SqlExpander.cs
- PageParser.cs
- WebPartsPersonalization.cs
- Internal.cs
- ZipFileInfoCollection.cs
- PersonalizationProvider.cs
- SiteMapPath.cs
- Int32CollectionValueSerializer.cs
- SoapCodeExporter.cs
- PathStreamGeometryContext.cs
- LabelLiteral.cs
- WindowsListView.cs