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
- ColumnTypeConverter.cs
- PrintEvent.cs
- ChangeDirector.cs
- SystemTcpStatistics.cs
- AdRotator.cs
- SafeCancelMibChangeNotify.cs
- Rotation3DAnimation.cs
- UnconditionalPolicy.cs
- DataServiceExpressionVisitor.cs
- adornercollection.cs
- LinqDataSourceStatusEventArgs.cs
- ReplacementText.cs
- DataViewSetting.cs
- SafeNativeMethodsOther.cs
- EntityModelSchemaGenerator.cs
- MergeFailedEvent.cs
- DropTarget.cs
- AutoGeneratedField.cs
- Vector3DAnimation.cs
- PrimitiveList.cs
- ProfileGroupSettings.cs
- CheckedListBox.cs
- BitmapFrame.cs
- Helpers.cs
- DynamicResourceExtensionConverter.cs
- EtwTrackingParticipant.cs
- Base64Encoder.cs
- ObjectStateManagerMetadata.cs
- HttpCapabilitiesBase.cs
- nulltextnavigator.cs
- GridSplitter.cs
- Native.cs
- ProcessRequestArgs.cs
- DataGridViewCheckBoxColumn.cs
- Array.cs
- ToolboxItemWrapper.cs
- LayoutExceptionEventArgs.cs
- Base64Encoding.cs
- DetailsViewAutoFormat.cs
- RectAnimation.cs
- QueryOptionExpression.cs
- ClrProviderManifest.cs
- Rect.cs
- IdentityHolder.cs
- XXXOnTypeBuilderInstantiation.cs
- ipaddressinformationcollection.cs
- MulticastOption.cs
- FormDocumentDesigner.cs
- BackgroundWorker.cs
- ObjectListCommandsPage.cs
- HttpException.cs
- PropertyInformation.cs
- Rule.cs
- DebugView.cs
- ColumnResizeAdorner.cs
- ProcessModelSection.cs
- SQLMoneyStorage.cs
- EventLogWatcher.cs
- GenerateTemporaryTargetAssembly.cs
- HtmlShimManager.cs
- FixedTextBuilder.cs
- RegexCompiler.cs
- MsdtcClusterUtils.cs
- BitmapPalette.cs
- DynamicVirtualDiscoSearcher.cs
- HashMembershipCondition.cs
- storepermission.cs
- StrokeNode.cs
- HttpProfileGroupBase.cs
- PermissionListSet.cs
- SuppressMessageAttribute.cs
- XamlInt32CollectionSerializer.cs
- DependencyObjectCodeDomSerializer.cs
- ContextMenuStrip.cs
- SystemException.cs
- GeneralTransform3DGroup.cs
- UnsafeNativeMethods.cs
- MailAddress.cs
- DynamicMethod.cs
- HttpListener.cs
- OrderByLifter.cs
- TypeCacheManager.cs
- PreviousTrackingServiceAttribute.cs
- ClientConfigPaths.cs
- RelationshipConstraintValidator.cs
- XmlBoundElement.cs
- MarkupCompilePass2.cs
- ImageMapEventArgs.cs
- WindowsScrollBar.cs
- PolygonHotSpot.cs
- IImplicitResourceProvider.cs
- TableCellAutomationPeer.cs
- StorageMappingFragment.cs
- BitmapEffectInputConnector.cs
- BrowserInteropHelper.cs
- WindowShowOrOpenTracker.cs
- ExpressionNode.cs
- XmlTextReaderImplHelpers.cs
- ZipIORawDataFileBlock.cs
- Socket.cs