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
- EdmComplexPropertyAttribute.cs
- SrgsElementList.cs
- ObjectQuery_EntitySqlExtensions.cs
- XsdBuilder.cs
- UrlAuthorizationModule.cs
- MdbDataFileEditor.cs
- DictionaryTraceRecord.cs
- HttpDebugHandler.cs
- TableSectionStyle.cs
- ParserExtension.cs
- AppSettingsExpressionBuilder.cs
- SqlProcedureAttribute.cs
- XmlSequenceWriter.cs
- Decoder.cs
- RtfToXamlReader.cs
- ResolvedKeyFrameEntry.cs
- OptimalTextSource.cs
- PackWebRequestFactory.cs
- EUCJPEncoding.cs
- AutomationElementCollection.cs
- TreeChangeInfo.cs
- SafeEventLogWriteHandle.cs
- WriteableBitmap.cs
- DSASignatureFormatter.cs
- CommentEmitter.cs
- IgnorePropertiesAttribute.cs
- UnsafePeerToPeerMethods.cs
- SqlBuilder.cs
- NavigationProperty.cs
- KeyFrames.cs
- OracleRowUpdatedEventArgs.cs
- VariableQuery.cs
- DataContract.cs
- BulletedListEventArgs.cs
- SpecialFolderEnumConverter.cs
- CollectionChangeEventArgs.cs
- PolicyReader.cs
- ADMembershipProvider.cs
- ScriptingScriptResourceHandlerSection.cs
- SHA256.cs
- RemotingConfiguration.cs
- ExtensionWindow.cs
- SortFieldComparer.cs
- CannotUnloadAppDomainException.cs
- Model3DCollection.cs
- PropertyIDSet.cs
- ControlParameter.cs
- DetailsViewPageEventArgs.cs
- SecurityPolicySection.cs
- EventSourceCreationData.cs
- WebPartTransformer.cs
- ValidatedControlConverter.cs
- CatalogZone.cs
- XmlSchemaSimpleType.cs
- BadImageFormatException.cs
- ImageSource.cs
- ApplicationFileParser.cs
- SqlConnection.cs
- ViewLoader.cs
- HierarchicalDataSourceControl.cs
- NotifyCollectionChangedEventArgs.cs
- DataTableCollection.cs
- WebPartManagerInternals.cs
- StatusBarItem.cs
- Propagator.Evaluator.cs
- FileDialogCustomPlacesCollection.cs
- TraceXPathNavigator.cs
- QilParameter.cs
- SHA512Managed.cs
- ContextMenuStripGroup.cs
- CommandPlan.cs
- UdpRetransmissionSettings.cs
- TypeViewSchema.cs
- DocumentsTrace.cs
- DataSourceHelper.cs
- RightsManagementInformation.cs
- MarkupExtensionParser.cs
- ConvertEvent.cs
- ETagAttribute.cs
- AssemblyLoader.cs
- AdRotatorDesigner.cs
- WinFormsUtils.cs
- XmlNamespaceMappingCollection.cs
- Matrix3D.cs
- BindingExpressionBase.cs
- NetworkAddressChange.cs
- HuffmanTree.cs
- ScaleTransform.cs
- XmlNamedNodeMap.cs
- baseshape.cs
- DescendentsWalker.cs
- TrustManager.cs
- AssemblyBuilder.cs
- Trace.cs
- FormViewInsertedEventArgs.cs
- MobileCategoryAttribute.cs
- URLAttribute.cs
- CryptoApi.cs
- CaseCqlBlock.cs
- WebPartAddingEventArgs.cs