Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DrawToolTipEventArgs.cs / 1305376 / DrawToolTipEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.Runtime.InteropServices; using System.ComponentModel; using System.Windows.Forms.VisualStyles; using System.Drawing; using System.Windows.Forms.Internal; using Microsoft.Win32; ////// /// This class contains the information a user needs to paint the ToolTip. /// public class DrawToolTipEventArgs : EventArgs { private readonly Graphics graphics; private readonly IWin32Window associatedWindow; private readonly Control associatedControl; private readonly Rectangle bounds; private readonly string toolTipText; private readonly Color backColor; private readonly Color foreColor; private readonly Font font; ////// /// Creates a new DrawToolTipEventArgs with the given parameters. /// public DrawToolTipEventArgs(Graphics graphics, IWin32Window associatedWindow, Control associatedControl, Rectangle bounds, string toolTipText, Color backColor, Color foreColor, Font font) { this.graphics = graphics; this.associatedWindow = associatedWindow; this.associatedControl = associatedControl; this.bounds = bounds; this.toolTipText = toolTipText; this.backColor = backColor; this.foreColor = foreColor; this.font = font; } ////// /// Graphics object with which painting should be done. /// public Graphics Graphics { get { return graphics; } } ////// /// The 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; } } ////// /// The rectangle outlining the area in which the painting should be done. /// public Rectangle Bounds { get { return bounds; } } ////// /// The text that should be drawn. /// public string ToolTipText { get { return toolTipText; } } ////// /// The font used to draw tooltip text. /// public Font Font { get { return font; } } ////// /// Draws the background of the ToolTip. /// public void DrawBackground() { Brush backBrush = new SolidBrush(backColor); Graphics.FillRectangle(backBrush, bounds); backBrush.Dispose(); } ////// /// Draws the text (overloaded) /// public void DrawText() { //Pass in a set of flags to mimic default behavior DrawText(TextFormatFlags.HorizontalCenter | TextFormatFlags.VerticalCenter | TextFormatFlags.SingleLine | TextFormatFlags.HidePrefix); } ////// /// Draws the text (overloaded) - takes a TextFormatFlags argument. /// public void DrawText(TextFormatFlags flags) { TextRenderer.DrawText(graphics, toolTipText, font, bounds, foreColor, flags); } ////// /// Draws a border for the ToolTip similar to the default border. /// public void DrawBorder() { ControlPaint.DrawBorder(graphics, bounds, SystemColors.WindowFrame, ButtonBorderStyle.Solid); } } } // 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
- PointLightBase.cs
- RunWorkerCompletedEventArgs.cs
- XdrBuilder.cs
- LocalizationCodeDomSerializer.cs
- StylusPointPropertyUnit.cs
- WindowsSecurityTokenAuthenticator.cs
- LinkedList.cs
- XNameTypeConverter.cs
- RegisteredArrayDeclaration.cs
- DeclaredTypeElementCollection.cs
- SharedStatics.cs
- TCEAdapterGenerator.cs
- FacetValueContainer.cs
- PeerContact.cs
- DbProviderFactoriesConfigurationHandler.cs
- ColumnMapCopier.cs
- _HeaderInfoTable.cs
- CustomErrorsSectionWrapper.cs
- LOSFormatter.cs
- DynamicQueryableWrapper.cs
- TextRangeEditLists.cs
- WebExceptionStatus.cs
- MulticastOption.cs
- HttpProtocolReflector.cs
- AuthenticationSection.cs
- UnSafeCharBuffer.cs
- DocumentStream.cs
- BatchServiceHost.cs
- ProcessActivityTreeOptions.cs
- Rectangle.cs
- DictionarySectionHandler.cs
- MLangCodePageEncoding.cs
- WrapPanel.cs
- ReverseInheritProperty.cs
- XmlSerializerVersionAttribute.cs
- TemplateField.cs
- TextFragmentEngine.cs
- Mappings.cs
- UnsafeNativeMethods.cs
- JoinTreeNode.cs
- SafeNativeMethods.cs
- AutoGeneratedFieldProperties.cs
- CaseDesigner.xaml.cs
- EdgeModeValidation.cs
- SubMenuStyleCollectionEditor.cs
- Int16KeyFrameCollection.cs
- WindowsRebar.cs
- MimeMapping.cs
- wgx_sdk_version.cs
- SafeHandle.cs
- StaticFileHandler.cs
- PageThemeParser.cs
- ObjectQuery_EntitySqlExtensions.cs
- ExecutionContext.cs
- CallContext.cs
- CompiledRegexRunner.cs
- PackageFilter.cs
- ThicknessAnimationUsingKeyFrames.cs
- CounterCreationDataCollection.cs
- HotCommands.cs
- SpeechRecognizer.cs
- RoutedEventArgs.cs
- HttpsChannelListener.cs
- CodeNamespaceImportCollection.cs
- Task.cs
- FixedSOMLineRanges.cs
- RegexRunner.cs
- baseaxisquery.cs
- HttpBindingExtension.cs
- invalidudtexception.cs
- ToolStripDropDownClosedEventArgs.cs
- MobileControlDesigner.cs
- PropertyTabAttribute.cs
- HtmlControl.cs
- Processor.cs
- SelectionPatternIdentifiers.cs
- WorkflowInspectionServices.cs
- UnlockInstanceCommand.cs
- CodeComment.cs
- TargetConverter.cs
- SynchronizedDispatch.cs
- SuppressMessageAttribute.cs
- ToolStripStatusLabel.cs
- NativeMethods.cs
- COAUTHINFO.cs
- TraceLevelStore.cs
- CultureInfo.cs
- WmpBitmapDecoder.cs
- GroupItemAutomationPeer.cs
- DesignTimeTemplateParser.cs
- EntityContainerEmitter.cs
- SafeProcessHandle.cs
- CodeAccessSecurityEngine.cs
- BaseProcessor.cs
- XsdValidatingReader.cs
- ApplicationHost.cs
- ExtensionQuery.cs
- ChangeConflicts.cs
- SchemaImporterExtensionElement.cs
- NativeMethods.cs