Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / HandledEventArgs.cs / 1 / HandledEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class HandledEventArgs : EventArgs { ////// Provides data for the ////// event. /// /// Indicates, on return, whether or not the event was handled in the application's event handler. /// 'true' means the application handled the event, 'false' means it didn't. /// private bool handled; ////// public HandledEventArgs() : this(false) { } ////// Initializes a new instance of the ///class with /// handled set to . /// /// public HandledEventArgs(bool defaultHandledValue) : base() { this.handled = defaultHandledValue; } ////// Initializes a new instance of the ///class with /// handled set to the given value. /// /// public bool Handled { get { return this.handled; } set { this.handled = value; } } } }/// Gets or sets a value /// indicating whether the event is handled. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Pair.cs
- ThreadBehavior.cs
- DefaultAsyncDataDispatcher.cs
- ImmutableObjectAttribute.cs
- SqlDataSource.cs
- AttachedPropertyMethodSelector.cs
- EventDrivenDesigner.cs
- DataGridDesigner.cs
- IDispatchConstantAttribute.cs
- LoginName.cs
- Trustee.cs
- HttpResponseInternalWrapper.cs
- AjaxFrameworkAssemblyAttribute.cs
- XmlSchemaSubstitutionGroup.cs
- FormViewUpdateEventArgs.cs
- IMembershipProvider.cs
- TableParaClient.cs
- ReliableRequestSessionChannel.cs
- BaseTemplateCodeDomTreeGenerator.cs
- ControlParameter.cs
- IsolatedStorageFileStream.cs
- DataStorage.cs
- QilTargetType.cs
- PopupRootAutomationPeer.cs
- CompileLiteralTextParser.cs
- ResourceExpression.cs
- EditorZoneBase.cs
- SafeThreadHandle.cs
- PeerChannelListener.cs
- StorageEndPropertyMapping.cs
- ObjectSet.cs
- UriScheme.cs
- CollectionView.cs
- RijndaelCryptoServiceProvider.cs
- EncoderReplacementFallback.cs
- DataSourceXmlSerializer.cs
- TextTreeUndo.cs
- DataRowComparer.cs
- DispatchProxy.cs
- PropertyGeneratedEventArgs.cs
- ReadWriteControlDesigner.cs
- OrderedDictionaryStateHelper.cs
- InstalledFontCollection.cs
- PropertyTab.cs
- ColumnBinding.cs
- Int64Animation.cs
- WinFormsSecurity.cs
- ToolStripSplitStackLayout.cs
- MenuItemBindingCollection.cs
- TemplateControl.cs
- XmlName.cs
- ThreadInterruptedException.cs
- WebMessageBodyStyleHelper.cs
- WebPartMinimizeVerb.cs
- RNGCryptoServiceProvider.cs
- TextBlockAutomationPeer.cs
- ListItemsCollectionEditor.cs
- RoutedEventHandlerInfo.cs
- ConfigurationManagerInternalFactory.cs
- EnumerableCollectionView.cs
- TextBreakpoint.cs
- ZipIOCentralDirectoryBlock.cs
- SmiEventStream.cs
- DataGridTable.cs
- XAMLParseException.cs
- ExeContext.cs
- DataGridTextBoxColumn.cs
- NamespaceDecl.cs
- LinkedResourceCollection.cs
- TextEditorSelection.cs
- RelationshipDetailsRow.cs
- IIS7ConfigurationLoader.cs
- TransformerTypeCollection.cs
- NamedObject.cs
- BooleanStorage.cs
- ServiceDescription.cs
- DbParameterCollection.cs
- BitmapCodecInfoInternal.cs
- SymbolDocumentInfo.cs
- CqlGenerator.cs
- BitmapEncoder.cs
- DispatcherEventArgs.cs
- IsolatedStorageException.cs
- DeferredBinaryDeserializerExtension.cs
- PagesChangedEventArgs.cs
- JumpItem.cs
- PingOptions.cs
- CheckBoxStandardAdapter.cs
- SetIterators.cs
- TypeDescriptor.cs
- SqlDataSourceView.cs
- PasswordTextContainer.cs
- LabelAutomationPeer.cs
- PathFigureCollection.cs
- DesignTimeTemplateParser.cs
- SafeFileMappingHandle.cs
- Source.cs
- DbConnectionInternal.cs
- DictionaryEntry.cs
- SerializationStore.cs