Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / ComponentModel / CurrentChangingEventArgs.cs / 1305600 / CurrentChangingEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: CurrentChanging event arguments // //--------------------------------------------------------------------------- using System; using System.Windows; using MS.Internal.WindowsBase; 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
- DataServiceRequest.cs
- SelectionEditor.cs
- SetterBase.cs
- EntityDataSourceDataSelection.cs
- HtmlForm.cs
- WindowsRichEdit.cs
- TreeNodeBindingCollection.cs
- GeneralTransform2DTo3DTo2D.cs
- WebHttpBehavior.cs
- XmlSerializer.cs
- AdvancedBindingPropertyDescriptor.cs
- SqlError.cs
- DesignerDataView.cs
- Stack.cs
- DataGridViewRowHeaderCell.cs
- XmlElement.cs
- FixedFlowMap.cs
- Hashtable.cs
- ScriptingAuthenticationServiceSection.cs
- DataBindingList.cs
- Button.cs
- sqlstateclientmanager.cs
- EventTrigger.cs
- TypeConverterHelper.cs
- WebRequest.cs
- DBCommandBuilder.cs
- SafeRightsManagementPubHandle.cs
- DrawingContextWalker.cs
- CardSpaceException.cs
- Screen.cs
- UrlMappingCollection.cs
- SafeArrayTypeMismatchException.cs
- ObjectDataSource.cs
- WindowProviderWrapper.cs
- MatrixValueSerializer.cs
- NodeFunctions.cs
- MergeFailedEvent.cs
- BasicExpressionVisitor.cs
- ParseHttpDate.cs
- TreeNodeStyleCollection.cs
- mediaeventshelper.cs
- TreeNodeBinding.cs
- WebPartDisplayMode.cs
- Assert.cs
- UserPersonalizationStateInfo.cs
- XmlSiteMapProvider.cs
- BufferedWebEventProvider.cs
- DataGridViewComboBoxCell.cs
- ContextStack.cs
- AnnotationAuthorChangedEventArgs.cs
- XPathParser.cs
- WebPartZoneCollection.cs
- IndexedGlyphRun.cs
- FrugalMap.cs
- UnmanagedHandle.cs
- ServiceOperation.cs
- WindowsListViewSubItem.cs
- MethodBody.cs
- SiteMapNodeCollection.cs
- MeasureItemEvent.cs
- CustomUserNameSecurityTokenAuthenticator.cs
- TemplateBamlRecordReader.cs
- ApplicationTrust.cs
- XmlDomTextWriter.cs
- MbpInfo.cs
- StatusBarItemAutomationPeer.cs
- AggregateNode.cs
- ImageConverter.cs
- CompilerGlobalScopeAttribute.cs
- login.cs
- GeometryConverter.cs
- AQNBuilder.cs
- ScriptReferenceEventArgs.cs
- OdbcEnvironmentHandle.cs
- SqlVisitor.cs
- ValidationResult.cs
- AffineTransform3D.cs
- ChtmlTextWriter.cs
- FixedSOMImage.cs
- InternalConfigSettingsFactory.cs
- ReadOnlyDictionary.cs
- FixedSOMTable.cs
- ConfigurationPropertyAttribute.cs
- DataGridViewImageColumn.cs
- DataSourceCache.cs
- WebConfigurationManager.cs
- ParsedRoute.cs
- XmlSignatureManifest.cs
- DataChangedEventManager.cs
- Point3D.cs
- FragmentQueryProcessor.cs
- AuthenticationModulesSection.cs
- DataServiceResponse.cs
- ParsedRoute.cs
- DbDataRecord.cs
- XmlUrlResolver.cs
- RuleRefElement.cs
- XPathNodeInfoAtom.cs
- DLinqTableProvider.cs
- ProfileGroupSettingsCollection.cs