Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / HandledMouseEvent.cs / 1 / HandledMouseEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { ///public class HandledMouseEventArgs : MouseEventArgs { /// /// 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 HandledMouseEventArgs(MouseButtons button, int clicks, int x, int y, int delta) : this(button, clicks, x, y, delta, false) { } /// public HandledMouseEventArgs(MouseButtons button, int clicks, int x, int y, int delta, bool defaultHandledValue) : base(button, clicks, x, y, delta) { this.handled = defaultHandledValue; } /// /// /// public bool Handled { get { return this.handled; } set { this.handled = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// 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
- ComponentCodeDomSerializer.cs
- ComPlusTraceRecord.cs
- BigInt.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- BuildResultCache.cs
- IssuedTokenClientElement.cs
- Stylus.cs
- TableCell.cs
- StateDesigner.cs
- future.cs
- Literal.cs
- SuspendDesigner.cs
- SuppressedPackageProperties.cs
- ErrorRuntimeConfig.cs
- SubstitutionList.cs
- XmlSchemaIdentityConstraint.cs
- TableRowGroup.cs
- ping.cs
- DataException.cs
- ObjectResult.cs
- QilInvokeEarlyBound.cs
- RemotingException.cs
- _ConnectOverlappedAsyncResult.cs
- TagNameToTypeMapper.cs
- TrackingServices.cs
- LineGeometry.cs
- Point3DAnimationBase.cs
- LocalValueEnumerator.cs
- DSASignatureDeformatter.cs
- RoutedCommand.cs
- GlobalDataBindingHandler.cs
- SoapFaultCodes.cs
- XamlInt32CollectionSerializer.cs
- StrongNameMembershipCondition.cs
- ConfigurationException.cs
- ImageCreator.cs
- PersistencePipeline.cs
- MethodBody.cs
- TextElementAutomationPeer.cs
- SmtpClient.cs
- WMICapabilities.cs
- SignatureToken.cs
- TypeNameParser.cs
- EncodingTable.cs
- XmlAttributeCache.cs
- XmlMapping.cs
- JsonClassDataContract.cs
- safelinkcollection.cs
- XmlChildEnumerator.cs
- WrappingXamlSchemaContext.cs
- DependencyObjectPropertyDescriptor.cs
- Viewport3DVisual.cs
- RijndaelManagedTransform.cs
- CellRelation.cs
- Win32.cs
- HelloMessage11.cs
- _UncName.cs
- KnownIds.cs
- ImmutableObjectAttribute.cs
- EmbeddedMailObjectsCollection.cs
- Light.cs
- ThumbButtonInfoCollection.cs
- MetadataArtifactLoader.cs
- SafeFileMappingHandle.cs
- DateTimeConverter2.cs
- PageHandlerFactory.cs
- SchemaNotation.cs
- InfiniteTimeSpanConverter.cs
- WindowsGrip.cs
- UrlMappingsModule.cs
- XamlValidatingReader.cs
- HttpConfigurationContext.cs
- TrackingStringDictionary.cs
- EventItfInfo.cs
- FastEncoder.cs
- XslUrlEditor.cs
- XslAstAnalyzer.cs
- SmiMetaDataProperty.cs
- BinaryOperationBinder.cs
- BaseTreeIterator.cs
- XmlSerializationWriter.cs
- IIS7WorkerRequest.cs
- IDispatchConstantAttribute.cs
- CompatibleComparer.cs
- NestPullup.cs
- StatusBarDesigner.cs
- EllipseGeometry.cs
- PropertyGroupDescription.cs
- ArrangedElement.cs
- ServiceDiscoveryBehavior.cs
- KnownTypesProvider.cs
- CatalogPart.cs
- FormattedText.cs
- FloaterParagraph.cs
- VectorKeyFrameCollection.cs
- WebPartExportVerb.cs
- ChtmlFormAdapter.cs
- RadioButton.cs
- Pair.cs
- SharedPersonalizationStateInfo.cs