Code:
/ FX-1434 / FX-1434 / 1.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
- Compilation.cs
- ColorEditor.cs
- RpcAsyncResult.cs
- BitmapEffectGroup.cs
- ForEachAction.cs
- HiddenFieldDesigner.cs
- XmlWriterTraceListener.cs
- XmlIlTypeHelper.cs
- ToolboxComponentsCreatingEventArgs.cs
- Speller.cs
- GenericPrincipal.cs
- DrawingDrawingContext.cs
- ImageMetadata.cs
- WindowsProgressbar.cs
- InfoCardMetadataExchangeClient.cs
- TextEditorSelection.cs
- TableCell.cs
- FileUtil.cs
- RowToParametersTransformer.cs
- CommentGlyph.cs
- NamedPipeProcessProtocolHandler.cs
- SourceCollection.cs
- AdornedElementPlaceholder.cs
- ServiceAppDomainAssociationProvider.cs
- ToolBarButton.cs
- MenuAutomationPeer.cs
- IndexedString.cs
- DataGridViewCellFormattingEventArgs.cs
- SynchronizedInputAdaptor.cs
- FixedSOMContainer.cs
- SettingsBindableAttribute.cs
- ElementHostPropertyMap.cs
- ArrangedElement.cs
- _SSPISessionCache.cs
- UnknownExceptionActionHelper.cs
- PlaceHolder.cs
- OutputScopeManager.cs
- DataGridViewCellFormattingEventArgs.cs
- Comparer.cs
- _OSSOCK.cs
- SerialStream.cs
- Parameter.cs
- SoapSchemaMember.cs
- ElementProxy.cs
- XmlDomTextWriter.cs
- InputScopeNameConverter.cs
- EntityDataSourceState.cs
- ExpressionBindingCollection.cs
- OracleParameterBinding.cs
- Walker.cs
- DesignerActionItem.cs
- TableCell.cs
- FontUnit.cs
- StylusEditingBehavior.cs
- TreeIterator.cs
- StandardToolWindows.cs
- ImportOptions.cs
- Parameter.cs
- XmlEntityReference.cs
- TraceFilter.cs
- SqlXmlStorage.cs
- TraceHandler.cs
- MinimizableAttributeTypeConverter.cs
- HttpStaticObjectsCollectionWrapper.cs
- MessageDecoder.cs
- SafeViewOfFileHandle.cs
- TextEffectResolver.cs
- EventWaitHandle.cs
- TraceSection.cs
- LocationUpdates.cs
- Point3DIndependentAnimationStorage.cs
- versioninfo.cs
- autovalidator.cs
- CopyOnWriteList.cs
- ProviderConnectionPoint.cs
- SqlRecordBuffer.cs
- ImageBrush.cs
- DataContractSerializerOperationFormatter.cs
- CSharpCodeProvider.cs
- EdmItemCollection.cs
- GridViewColumn.cs
- shaper.cs
- CmsUtils.cs
- WebServicesDescriptionAttribute.cs
- SemaphoreFullException.cs
- CheckoutException.cs
- ExpressionBuilderCollection.cs
- ErrorProvider.cs
- KeyToListMap.cs
- CommandID.cs
- CompilerState.cs
- MethodExpression.cs
- AsymmetricKeyExchangeDeformatter.cs
- XmlQueryContext.cs
- SuppressMessageAttribute.cs
- ErrorFormatter.cs
- Knowncolors.cs
- TableDetailsCollection.cs
- FixedSOMGroup.cs
- CmsInterop.cs