Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / PopupEventArgs.cs / 1305376 / 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.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TypePropertyEditor.cs
- HtmlProps.cs
- DataGrid.cs
- SqlBinder.cs
- EventListenerClientSide.cs
- WebPartConnectionsCancelEventArgs.cs
- DES.cs
- DataGridCell.cs
- ProviderCommandInfoUtils.cs
- GifBitmapEncoder.cs
- SchemaCollectionCompiler.cs
- exports.cs
- BuildManager.cs
- httpserverutility.cs
- DateTimeConverter2.cs
- BStrWrapper.cs
- Function.cs
- StringSource.cs
- FixedSOMPage.cs
- EdmType.cs
- MergeFilterQuery.cs
- BinHexEncoder.cs
- AttributeInfo.cs
- DbgUtil.cs
- ControlBuilder.cs
- ControlAdapter.cs
- ParsedRoute.cs
- DiscoveryReferences.cs
- COAUTHINFO.cs
- DurableInstanceContextProvider.cs
- MultiTrigger.cs
- RecordManager.cs
- UnmanagedMarshal.cs
- SeverityFilter.cs
- CookieHandler.cs
- Input.cs
- ChangeInterceptorAttribute.cs
- DetailsViewModeEventArgs.cs
- CodeVariableReferenceExpression.cs
- TimestampInformation.cs
- BaseServiceProvider.cs
- StructuredProperty.cs
- HtmlSelect.cs
- ObjectAssociationEndMapping.cs
- RawStylusSystemGestureInputReport.cs
- ForEachAction.cs
- KeyedHashAlgorithm.cs
- ClaimTypeElementCollection.cs
- PipelineModuleStepContainer.cs
- PlaceHolder.cs
- CompiledQueryCacheKey.cs
- CustomTypeDescriptor.cs
- AuthorizationRule.cs
- WebPartExportVerb.cs
- RuntimeArgumentHandle.cs
- StatusBarPanel.cs
- BitmapDownload.cs
- HtmlInputButton.cs
- XmlSchemaInclude.cs
- InputReportEventArgs.cs
- DataContractAttribute.cs
- GroupBoxRenderer.cs
- XmlUnspecifiedAttribute.cs
- ItemCheckEvent.cs
- QilReplaceVisitor.cs
- SessionEndingEventArgs.cs
- XmlCharType.cs
- ParserOptions.cs
- HighlightVisual.cs
- HitTestWithPointDrawingContextWalker.cs
- BitmapEffectInputConnector.cs
- ACE.cs
- InvalidPrinterException.cs
- OdbcInfoMessageEvent.cs
- Menu.cs
- DataBindingExpressionBuilder.cs
- RemoteWebConfigurationHost.cs
- DynamicRenderer.cs
- CacheAxisQuery.cs
- XmlDataSourceNodeDescriptor.cs
- ExpressionCopier.cs
- SchemaCollectionPreprocessor.cs
- StoreContentChangedEventArgs.cs
- ImportContext.cs
- _HeaderInfo.cs
- XmlSchema.cs
- PageClientProxyGenerator.cs
- ReadWriteControlDesigner.cs
- PasswordTextNavigator.cs
- TextStore.cs
- OdbcTransaction.cs
- CodeAttributeDeclaration.cs
- COM2PropertyDescriptor.cs
- ActivityMarkupSerializer.cs
- LicenseException.cs
- MemoryFailPoint.cs
- CommandBindingCollection.cs
- TypedServiceChannelBuilder.cs
- CachedCompositeFamily.cs
- EntityDataSourceStatementEditor.cs