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
- DataGridTableCollection.cs
- ChtmlPageAdapter.cs
- XmlWrappingReader.cs
- EntityProviderFactory.cs
- WmlValidationSummaryAdapter.cs
- EncodingInfo.cs
- BindingSourceDesigner.cs
- SapiRecognizer.cs
- BulletDecorator.cs
- DataViewSettingCollection.cs
- XpsFilter.cs
- CaretElement.cs
- CreateUserWizardStep.cs
- ManagedWndProcTracker.cs
- WorkflowViewManager.cs
- MenuItem.cs
- ListSortDescription.cs
- StrongNameIdentityPermission.cs
- DataPagerCommandEventArgs.cs
- ClientRuntimeConfig.cs
- Delegate.cs
- AssemblyResourceLoader.cs
- CharUnicodeInfo.cs
- keycontainerpermission.cs
- FontFamilyConverter.cs
- SQLSingleStorage.cs
- ControlType.cs
- SspiSecurityToken.cs
- Ports.cs
- EtwTrace.cs
- AnonymousIdentificationSection.cs
- SmtpCommands.cs
- NotifyCollectionChangedEventArgs.cs
- FillErrorEventArgs.cs
- SqlClientMetaDataCollectionNames.cs
- ManagementBaseObject.cs
- StyleXamlTreeBuilder.cs
- ReadWriteControlDesigner.cs
- Effect.cs
- Sql8ExpressionRewriter.cs
- cache.cs
- _AutoWebProxyScriptWrapper.cs
- ObservableCollection.cs
- StrokeNodeData.cs
- HitTestParameters.cs
- FtpWebResponse.cs
- HttpCookiesSection.cs
- ApplicationDirectory.cs
- SecurityTokenTypes.cs
- ProfileGroupSettings.cs
- DocumentGrid.cs
- TypeGeneratedEventArgs.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- SchemaManager.cs
- Helpers.cs
- ExpressionBuilder.cs
- FontStyles.cs
- TextDpi.cs
- ProfileGroupSettingsCollection.cs
- ReflectionUtil.cs
- CloseCollectionAsyncResult.cs
- NullReferenceException.cs
- Item.cs
- DataSourceHelper.cs
- BoolExpr.cs
- RemotingServices.cs
- AnnotationAuthorChangedEventArgs.cs
- bidPrivateBase.cs
- ValidatorAttribute.cs
- PropertyStore.cs
- FontStyles.cs
- RegexFCD.cs
- BooleanFunctions.cs
- LabelTarget.cs
- StorageMappingFragment.cs
- SmtpFailedRecipientException.cs
- CodeCommentStatementCollection.cs
- SqlBulkCopy.cs
- DataViewManager.cs
- ContextMenuAutomationPeer.cs
- FilterElement.cs
- UriScheme.cs
- MessageSecurityOverHttp.cs
- SystemIPAddressInformation.cs
- QueryTask.cs
- HostingEnvironment.cs
- __FastResourceComparer.cs
- List.cs
- NumericExpr.cs
- SqlClientFactory.cs
- HttpListener.cs
- XmlSerializerNamespaces.cs
- MultiTouchSystemGestureLogic.cs
- EndpointIdentity.cs
- SqlDataSourceView.cs
- TimerEventSubscriptionCollection.cs
- PrintSystemException.cs
- EventLogEntryCollection.cs
- _Win32.cs
- GeometryGroup.cs