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
- XmlAnyElementAttributes.cs
- TransformPattern.cs
- SettingsSection.cs
- MasterPageParser.cs
- Material.cs
- DrawListViewItemEventArgs.cs
- OdbcConnectionString.cs
- XmlWriterTraceListener.cs
- AccessControlList.cs
- EnvironmentPermission.cs
- RelationshipConverter.cs
- WorkflowServiceAttributesTypeConverter.cs
- SchemaManager.cs
- XmlSchemaComplexType.cs
- Int32EqualityComparer.cs
- HtmlString.cs
- TrackingCondition.cs
- SignerInfo.cs
- PageThemeParser.cs
- EntityDataSourceChangedEventArgs.cs
- LoadWorkflowAsyncResult.cs
- GridViewDeleteEventArgs.cs
- XmlImplementation.cs
- EmptyEnumerable.cs
- OleDbCommandBuilder.cs
- OutKeywords.cs
- Int32Converter.cs
- handlecollector.cs
- UIAgentAsyncEndRequest.cs
- WebResponse.cs
- WeakEventManager.cs
- Columns.cs
- ISFTagAndGuidCache.cs
- SqlXml.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- ContextProperty.cs
- CodeAttachEventStatement.cs
- Msec.cs
- ScaleTransform3D.cs
- CounterSampleCalculator.cs
- OlePropertyStructs.cs
- ProxyElement.cs
- FileVersionInfo.cs
- DataGridViewColumnConverter.cs
- PlanCompilerUtil.cs
- CompressedStack.cs
- DataGridHelper.cs
- WebPartsPersonalizationAuthorization.cs
- UnsafeNativeMethods.cs
- SqlTypeSystemProvider.cs
- ResourceContainer.cs
- OracleParameterCollection.cs
- SqlConnectionManager.cs
- RSAPKCS1SignatureFormatter.cs
- DropAnimation.xaml.cs
- ImplicitInputBrush.cs
- PackWebRequestFactory.cs
- ConfigUtil.cs
- EditModeSwitchButton.cs
- CryptoHandle.cs
- CallbackValidator.cs
- SamlAssertionDirectKeyIdentifierClause.cs
- ExecutionContext.cs
- InvalidPropValue.cs
- Viewport3DAutomationPeer.cs
- HtmlToClrEventProxy.cs
- HttpRuntimeSection.cs
- SamlAttribute.cs
- XmlCharCheckingReader.cs
- PathSegment.cs
- MemberAssignment.cs
- TextTrailingWordEllipsis.cs
- Trace.cs
- HttpHeaderCollection.cs
- AttributeEmitter.cs
- EntityChangedParams.cs
- GridViewSortEventArgs.cs
- FilteredDataSetHelper.cs
- EarlyBoundInfo.cs
- ListViewDeletedEventArgs.cs
- IgnorePropertiesAttribute.cs
- PointHitTestResult.cs
- XmlCDATASection.cs
- COM2EnumConverter.cs
- TextTreeTextElementNode.cs
- SignatureDescription.cs
- SecurityIdentifierConverter.cs
- Lasso.cs
- activationcontext.cs
- ItemCheckEvent.cs
- LocatorManager.cs
- figurelengthconverter.cs
- ConnectionsZone.cs
- XslCompiledTransform.cs
- SqlVisitor.cs
- StringPropertyBuilder.cs
- OracleRowUpdatedEventArgs.cs
- _UncName.cs
- SynchronizationHandlesCodeDomSerializer.cs
- MessageDecoder.cs