Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / PopupEventArgs.cs / 1 / PopupEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.ComponentModel; using System.Drawing; using Microsoft.Win32; ////// /// This class contains the information a user needs to paint the ToolTip. /// public class PopupEventArgs : CancelEventArgs { private IWin32Window associatedWindow; private Size size; private Control associatedControl; private bool isBalloon; ////// /// Creates a new PopupEventArgs with the given parameters. /// public PopupEventArgs(IWin32Window associatedWindow, Control associatedControl, bool isBalloon, Size size) { this.associatedWindow = associatedWindow; this.size = size; this.associatedControl = associatedControl; this.isBalloon = isBalloon; } ////// /// The Associated Window for which the tooltip is being painted. /// public IWin32Window AssociatedWindow { get { return associatedWindow; } } ////// /// The control for which the tooltip is being painted. /// public Control AssociatedControl { get { return associatedControl; } } ////// /// Whether the tooltip is Ballooned. /// public bool IsBalloon { get { return isBalloon; } } ////// /// The rectangle outlining the area in which the painting should be done. /// public Size ToolTipSize { get { return size; } set { size = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GradientStopCollection.cs
- RegistrationProxy.cs
- NotifyIcon.cs
- FixedSOMTableCell.cs
- JsonReader.cs
- QueryOutputWriter.cs
- EntityFrameworkVersions.cs
- HttpWriter.cs
- HttpHandlerAction.cs
- RelativeSource.cs
- InlinedAggregationOperator.cs
- WebPartConnectionsCloseVerb.cs
- XmlSchemaException.cs
- SizeFConverter.cs
- ValidationError.cs
- SourceElementsCollection.cs
- InvalidChannelBindingException.cs
- _ConnectionGroup.cs
- ExtenderProviderService.cs
- ApplicationException.cs
- AlternateView.cs
- GridViewRowCollection.cs
- PenThread.cs
- QueueProcessor.cs
- XamlReader.cs
- FixedTextBuilder.cs
- Int64AnimationUsingKeyFrames.cs
- GeneratedCodeAttribute.cs
- CodeExpressionCollection.cs
- ITextView.cs
- TypefaceCollection.cs
- DefaultBindingPropertyAttribute.cs
- FontFamily.cs
- KeyboardNavigation.cs
- ConfigurationException.cs
- OdbcConnectionOpen.cs
- GCHandleCookieTable.cs
- ParsedAttributeCollection.cs
- ReferentialConstraint.cs
- _LocalDataStore.cs
- EventLogEntryCollection.cs
- CharUnicodeInfo.cs
- SQLDoubleStorage.cs
- DataGridHelper.cs
- SymbolUsageManager.cs
- UnregisterInfo.cs
- ResourceDescriptionAttribute.cs
- Enum.cs
- FilterFactory.cs
- XmlEnumAttribute.cs
- HyperLink.cs
- PeerTransportSecuritySettings.cs
- DefaultCommandExtensionCallback.cs
- TerminatorSinks.cs
- FixedPageStructure.cs
- DocumentXmlWriter.cs
- ResourceReferenceKeyNotFoundException.cs
- UnsafeNativeMethods.cs
- ReadOnlyDataSource.cs
- FormsAuthenticationUserCollection.cs
- Int16Storage.cs
- Nodes.cs
- BuildResult.cs
- GroupItem.cs
- SchemaMapping.cs
- IResourceProvider.cs
- ApplicationFileCodeDomTreeGenerator.cs
- FlagsAttribute.cs
- Exceptions.cs
- ListSortDescription.cs
- ActivityExecutionWorkItem.cs
- XPathMessageFilterElementCollection.cs
- OracleInternalConnection.cs
- FormViewModeEventArgs.cs
- SettingsAttributes.cs
- WorkflowTransactionOptions.cs
- UnmanagedMarshal.cs
- ResourceManagerWrapper.cs
- DoWorkEventArgs.cs
- Tablet.cs
- DeviceContexts.cs
- ObjectQueryProvider.cs
- HtmlButton.cs
- ZipIOCentralDirectoryBlock.cs
- OracleInternalConnection.cs
- TreeNodeEventArgs.cs
- CompilationPass2TaskInternal.cs
- PropertyInformationCollection.cs
- ReadOnlyHierarchicalDataSourceView.cs
- dbdatarecord.cs
- SqlTriggerContext.cs
- base64Transforms.cs
- RequiredFieldValidator.cs
- MexTcpBindingElement.cs
- AssemblyCollection.cs
- PersonalizationEntry.cs
- WebPart.cs
- SqlStream.cs
- DesignerActionService.cs
- GridViewSortEventArgs.cs