Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / HandledEventArgs.cs / 1305376 / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// 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
- LayoutTable.cs
- TextMarkerSource.cs
- FixedSOMImage.cs
- ModulesEntry.cs
- EnumBuilder.cs
- WinCategoryAttribute.cs
- WebSysDescriptionAttribute.cs
- XPathSelfQuery.cs
- ColorTransformHelper.cs
- DataGridViewSelectedColumnCollection.cs
- SqlPersistenceWorkflowInstanceDescription.cs
- SizeF.cs
- PrintDocument.cs
- RuntimeConfigLKG.cs
- WindowCollection.cs
- ApplicationGesture.cs
- DbModificationCommandTree.cs
- XamlClipboardData.cs
- TransactionManager.cs
- WebSysDescriptionAttribute.cs
- StringBlob.cs
- Win32SafeHandles.cs
- GridViewColumnCollection.cs
- DataGrid.cs
- ToolboxDataAttribute.cs
- TextRunProperties.cs
- CurrentChangingEventManager.cs
- NetNamedPipeSecurityMode.cs
- AttachedAnnotationChangedEventArgs.cs
- FacetChecker.cs
- SqlClientMetaDataCollectionNames.cs
- RowParagraph.cs
- PropertySegmentSerializer.cs
- FacetChecker.cs
- TextMarkerSource.cs
- AsymmetricSignatureDeformatter.cs
- BoolLiteral.cs
- SR.cs
- MeasurementDCInfo.cs
- FormsAuthenticationConfiguration.cs
- DataConnectionHelper.cs
- HostProtectionPermission.cs
- ZipFileInfoCollection.cs
- PartialList.cs
- RectAnimation.cs
- ReverseInheritProperty.cs
- StyleBamlRecordReader.cs
- TextServicesLoader.cs
- DependencyPropertyHelper.cs
- BmpBitmapEncoder.cs
- Scheduler.cs
- UIElement3D.cs
- ColumnPropertiesGroup.cs
- ChangesetResponse.cs
- ParserContext.cs
- HierarchicalDataBoundControlAdapter.cs
- HttpCapabilitiesEvaluator.cs
- WebPartCatalogAddVerb.cs
- StringFunctions.cs
- AsyncOperation.cs
- RangeEnumerable.cs
- TableLayoutSettingsTypeConverter.cs
- ThicknessConverter.cs
- UnsupportedPolicyOptionsException.cs
- StringFormat.cs
- ItemCollection.cs
- SafeRightsManagementSessionHandle.cs
- Cursors.cs
- DBParameter.cs
- ToolTip.cs
- ServicePoint.cs
- TimeSpanMinutesConverter.cs
- NavigationEventArgs.cs
- EmptyQuery.cs
- JournalEntryListConverter.cs
- ColorKeyFrameCollection.cs
- CultureInfoConverter.cs
- WindowsScrollBarBits.cs
- ToolStripRenderEventArgs.cs
- Vector3DIndependentAnimationStorage.cs
- XmlObjectSerializerWriteContext.cs
- storepermissionattribute.cs
- PageTheme.cs
- TimeStampChecker.cs
- IndicFontClient.cs
- LinearGradientBrush.cs
- RecognitionEventArgs.cs
- Rotation3D.cs
- DoubleAnimationClockResource.cs
- WindowInteropHelper.cs
- BitmapEffectState.cs
- Model3D.cs
- Utils.cs
- RefreshEventArgs.cs
- PixelShader.cs
- AQNBuilder.cs
- ByteStreamGeometryContext.cs
- SecurityState.cs
- AttributeAction.cs
- InstanceBehavior.cs