Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / DrawToolTipEventArgs.cs / 1 / 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. //------------------------------------------------------------------------------ //// 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
- InvalidProgramException.cs
- MailMessageEventArgs.cs
- ResourceProviderFactory.cs
- RuleSettingsCollection.cs
- RelationshipConverter.cs
- RelationshipSet.cs
- DefaultShape.cs
- MissingSatelliteAssemblyException.cs
- LinkClickEvent.cs
- DetailsViewRow.cs
- AnonymousIdentificationModule.cs
- WebPartConnectionsCancelEventArgs.cs
- ResourceKey.cs
- URLAttribute.cs
- DocumentPage.cs
- HtmlPageAdapter.cs
- Timer.cs
- DocumentPageHost.cs
- ControlCommandSet.cs
- EntityDesignerBuildProvider.cs
- AttachedPropertyMethodSelector.cs
- CreateSequenceResponse.cs
- StylusOverProperty.cs
- TimeoutStream.cs
- PrefixHandle.cs
- InvalidProgramException.cs
- SoapCodeExporter.cs
- WeakReferenceList.cs
- XmlSerializerFactory.cs
- ElementProxy.cs
- SqlAggregateChecker.cs
- XmlDataDocument.cs
- CorePropertiesFilter.cs
- Dictionary.cs
- XmlNullResolver.cs
- PageCatalogPart.cs
- Attachment.cs
- StorageBasedPackageProperties.cs
- EntityKeyElement.cs
- NavigateEvent.cs
- XPathMultyIterator.cs
- ValueTable.cs
- XPathNodeInfoAtom.cs
- TokenBasedSetEnumerator.cs
- ToolboxBitmapAttribute.cs
- _FixedSizeReader.cs
- MarshalDirectiveException.cs
- GridItem.cs
- Brush.cs
- PackWebResponse.cs
- PermissionListSet.cs
- CustomAttributeBuilder.cs
- DocumentNUp.cs
- OutputBuffer.cs
- ResolveCriteria11.cs
- ITextView.cs
- ButtonFlatAdapter.cs
- ProcessThread.cs
- DecoderBestFitFallback.cs
- ButtonRenderer.cs
- RawStylusInputReport.cs
- ClientTarget.cs
- ObjectDataSourceDisposingEventArgs.cs
- HitTestResult.cs
- SqlLiftWhereClauses.cs
- ExpressionConverter.cs
- NotImplementedException.cs
- TimeIntervalCollection.cs
- TdsEnums.cs
- SQLInt16.cs
- SystemWebSectionGroup.cs
- precedingsibling.cs
- HostSecurityManager.cs
- Base64Stream.cs
- Filter.cs
- KeyboardInputProviderAcquireFocusEventArgs.cs
- OrderedDictionary.cs
- HtmlElementEventArgs.cs
- WindowsAuthenticationEventArgs.cs
- ModelItemImpl.cs
- Validator.cs
- diagnosticsswitches.cs
- AsyncInvokeContext.cs
- TypeUtil.cs
- Component.cs
- AdRotatorDesigner.cs
- CqlParserHelpers.cs
- JoinSymbol.cs
- RelationalExpressions.cs
- AmbiguousMatchException.cs
- DashStyle.cs
- PageCanvasSize.cs
- TextBox.cs
- XpsS0ValidatingLoader.cs
- FileDialogCustomPlacesCollection.cs
- FileSystemEventArgs.cs
- Popup.cs
- odbcmetadatafactory.cs
- X509Extension.cs
- ColumnWidthChangedEvent.cs