Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / HelpEvent.cs / 1 / HelpEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System.Runtime.Remoting; using System.ComponentModel; using System.Diagnostics; using System; using System.Drawing; using Microsoft.Win32; ////// /// [System.Runtime.InteropServices.ComVisible(true)] public class HelpEventArgs : EventArgs { private readonly Point mousePos; private bool handled = false; ////// Provides data for the Control.HelpRequest event. /// ////// /// public HelpEventArgs(Point mousePos) { this.mousePos = mousePos; } ////// Initializes a new instance of the ///class. /// /// /// public Point MousePos { get { return mousePos; } } ////// Gets the screen coordinates of the mouse pointer. /// ////// /// public bool Handled { get { return handled; } set { 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 Help event was handled. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FixedSOMContainer.cs
- ProfileBuildProvider.cs
- XmlSchemaGroup.cs
- CheckBoxRenderer.cs
- XmlILStorageConverter.cs
- WindowsListViewScroll.cs
- PageBreakRecord.cs
- FieldCollectionEditor.cs
- MasterPageParser.cs
- CompiledRegexRunner.cs
- CodeMemberProperty.cs
- AssociationType.cs
- WorkflowViewElement.cs
- DocumentSchemaValidator.cs
- TextPatternIdentifiers.cs
- OleDbInfoMessageEvent.cs
- NameValuePair.cs
- WinFormsSecurity.cs
- HtmlShim.cs
- NetworkAddressChange.cs
- IgnoreSection.cs
- SqlClientFactory.cs
- AggregatePushdown.cs
- TypeElement.cs
- SyncMethodInvoker.cs
- SmtpMail.cs
- Label.cs
- EncryptedPackage.cs
- ImageDrawing.cs
- DynamicRendererThreadManager.cs
- SymbolEqualComparer.cs
- ReflectEventDescriptor.cs
- StatusBarItemAutomationPeer.cs
- ProcessActivityTreeOptions.cs
- PathStreamGeometryContext.cs
- ReflectionPermission.cs
- LinqDataView.cs
- XsdDuration.cs
- ClassValidator.cs
- WorkerRequest.cs
- ExtentJoinTreeNode.cs
- AnonymousIdentificationSection.cs
- SecurityTokenProvider.cs
- WebPartConnectionsDisconnectVerb.cs
- AdornerHitTestResult.cs
- SoundPlayerAction.cs
- RouteParser.cs
- Literal.cs
- XPSSignatureDefinition.cs
- OpCodes.cs
- SHA1Managed.cs
- ObjectAssociationEndMapping.cs
- BlockUIContainer.cs
- SqlNotificationEventArgs.cs
- UnionCodeGroup.cs
- TextSelectionHelper.cs
- NameScope.cs
- XPathNodeInfoAtom.cs
- SmiMetaDataProperty.cs
- GacUtil.cs
- Attributes.cs
- VSWCFServiceContractGenerator.cs
- SessionEndingEventArgs.cs
- RunClient.cs
- TraceInternal.cs
- DataTemplateKey.cs
- ContentType.cs
- TcpDuplicateContext.cs
- BuilderElements.cs
- GenericFlowSwitchHelper.cs
- NegationPusher.cs
- PermissionSetEnumerator.cs
- MarginsConverter.cs
- CapabilitiesSection.cs
- DbConnectionFactory.cs
- InvalidDataException.cs
- SqlUDTStorage.cs
- Utils.cs
- ApplicationActivator.cs
- BitmapMetadata.cs
- KnownBoxes.cs
- HttpResponseHeader.cs
- AnnotationResourceCollection.cs
- DriveNotFoundException.cs
- ProjectedSlot.cs
- ParseChildrenAsPropertiesAttribute.cs
- SqlInfoMessageEvent.cs
- XPathItem.cs
- AttributeEmitter.cs
- RequiredFieldValidator.cs
- MemoryMappedViewAccessor.cs
- FormViewAutoFormat.cs
- ResourcesBuildProvider.cs
- FormatConvertedBitmap.cs
- FormViewPagerRow.cs
- TreeNodeCollection.cs
- IconEditor.cs
- OLEDB_Enum.cs
- XmlMtomReader.cs
- JsonEncodingStreamWrapper.cs