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
- MessageDecoder.cs
- TextLineBreak.cs
- DataGridRowHeaderAutomationPeer.cs
- GetPageNumberCompletedEventArgs.cs
- MemoryStream.cs
- NotifyInputEventArgs.cs
- EventLogger.cs
- SmtpCommands.cs
- UpdateExpressionVisitor.cs
- DataRelationPropertyDescriptor.cs
- DesignerActionItem.cs
- FormatStringEditor.cs
- HtmlGenericControl.cs
- ThreadAbortException.cs
- ButtonColumn.cs
- CellTreeNodeVisitors.cs
- ConfigurationSection.cs
- querybuilder.cs
- IssuedTokenServiceCredential.cs
- IntSecurity.cs
- SafeMarshalContext.cs
- ListSourceHelper.cs
- TextContainerHelper.cs
- Vars.cs
- PathFigure.cs
- DataGridParentRows.cs
- SkipQueryOptionExpression.cs
- ItemTypeToolStripMenuItem.cs
- EntityFunctions.cs
- NullRuntimeConfig.cs
- XmlSortKeyAccumulator.cs
- ErrorFormatterPage.cs
- ToolStripSettings.cs
- ProviderUtil.cs
- ScopeElementCollection.cs
- PersistenceContextEnlistment.cs
- IUnknownConstantAttribute.cs
- StringExpressionSet.cs
- PasswordBox.cs
- Encoder.cs
- WindowsIdentity.cs
- WindowsFormsSynchronizationContext.cs
- DefaultEvaluationContext.cs
- PropertyMap.cs
- TextMarkerSource.cs
- TreeNode.cs
- Transform3D.cs
- FrameDimension.cs
- FormsAuthenticationUser.cs
- ConfigXmlCDataSection.cs
- LazyTextWriterCreator.cs
- XmlElementCollection.cs
- EntitySetBase.cs
- Converter.cs
- OracleTimeSpan.cs
- PerfCounters.cs
- ImageButton.cs
- NameTable.cs
- MailAddress.cs
- CodeExporter.cs
- DynamicAttribute.cs
- SwitchElementsCollection.cs
- HtmlForm.cs
- MtomMessageEncodingElement.cs
- RelatedCurrencyManager.cs
- TypeBinaryExpression.cs
- NumberAction.cs
- DataSourceControl.cs
- HitTestDrawingContextWalker.cs
- DataGridViewColumnEventArgs.cs
- ChildTable.cs
- ChannelAcceptor.cs
- CodeParameterDeclarationExpressionCollection.cs
- DoubleLink.cs
- RequiredFieldValidator.cs
- XmlSchemaComplexContentRestriction.cs
- UTF8Encoding.cs
- XmlElementAttributes.cs
- MouseActionConverter.cs
- CaseInsensitiveComparer.cs
- HtmlTableRow.cs
- mactripleDES.cs
- TemplateBindingExtensionConverter.cs
- ScriptingProfileServiceSection.cs
- TreeNodeMouseHoverEvent.cs
- DataControlCommands.cs
- Lazy.cs
- ListViewDesigner.cs
- IncrementalCompileAnalyzer.cs
- ReaderWriterLock.cs
- FlagPanel.cs
- HandlerFactoryWrapper.cs
- DefaultValidator.cs
- ConnectionPoint.cs
- FolderBrowserDialog.cs
- XmlSchemaAnnotation.cs
- TagPrefixInfo.cs
- WindowsUpDown.cs
- SQLSingle.cs
- RegionIterator.cs