Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / DrawListViewItemEventArgs.cs / 1 / DrawListViewItemEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System; using System.ComponentModel; using System.Drawing; using System.Windows.Forms.Internal; using Microsoft.Win32; using System.Windows.Forms.VisualStyles; ////// /// This class contains the information a user needs to paint ListView items. /// public class DrawListViewItemEventArgs : EventArgs { private readonly Graphics graphics; private readonly ListViewItem item; private readonly Rectangle bounds; private readonly int itemIndex; private readonly ListViewItemStates state; private bool drawDefault; ////// /// Creates a new DrawListViewItemEventArgs with the given parameters. /// public DrawListViewItemEventArgs(Graphics graphics, ListViewItem item, Rectangle bounds, int itemIndex, ListViewItemStates state) { this.graphics = graphics; this.item = item; this.bounds = bounds; this.itemIndex = itemIndex; this.state = state; this.drawDefault = false; } ////// /// Causes the item do be drawn by the system instead of owner drawn. /// public bool DrawDefault { get { return drawDefault; } set { drawDefault = value; } } ////// /// Graphics object with which painting should be done. /// public Graphics Graphics { get { return graphics; } } ////// /// The item to be painted. /// public ListViewItem Item { get { return item; } } ////// /// The rectangle outlining the area in which the painting should be done. /// public Rectangle Bounds { get { return bounds; } } ////// /// The index of the item that should be painted. /// public int ItemIndex { get { return itemIndex; } } ////// /// Miscellaneous state information. /// public ListViewItemStates State { get { return state; } } ////// /// Draws the item's background. /// public void DrawBackground() { Brush backBrush = new SolidBrush(item.BackColor); Graphics.FillRectangle(backBrush, bounds); backBrush.Dispose(); } ////// /// Draws a focus rectangle in the given bounds, if the item is focused. In Details View, if FullRowSelect is /// true, the rectangle is drawn around the whole item, else around the first sub-item's text area. /// public void DrawFocusRectangle() { if ((state & ListViewItemStates.Focused) == ListViewItemStates.Focused) { Rectangle focusBounds = bounds; ControlPaint.DrawFocusRectangle(graphics, UpdateBounds(focusBounds, false /*drawText*/), item.ForeColor, item.BackColor); } } ////// /// Draws the item's text (overloaded) - useful only when View != View.Details /// public void DrawText() { DrawText(TextFormatFlags.Left); } ////// /// Draws the item's text (overloaded) - useful only when View != View.Details - takes a TextFormatFlags argument. /// public void DrawText(TextFormatFlags flags) { TextRenderer.DrawText(graphics, item.Text, item.Font, UpdateBounds(bounds, true /*drawText*/), item.ForeColor, flags); } private Rectangle UpdateBounds(Rectangle originalBounds, bool drawText) { Rectangle resultBounds = originalBounds; if (item.ListView.View == View.Details) { // Note: this logic will compute the bounds so they align w/ the system drawn bounds only // for the default font. if (!item.ListView.FullRowSelect && item.SubItems.Count > 0) { ListViewItem.ListViewSubItem subItem = item.SubItems[0]; Size textSize = TextRenderer.MeasureText(subItem.Text, subItem.Font); resultBounds = new Rectangle(originalBounds.X, originalBounds.Y, textSize.Width, textSize.Height); // Add some padding so we paint like the system control paints. resultBounds.X += 4; resultBounds.Width ++; } else { resultBounds.X +=4; resultBounds.Width -= 4; } if (drawText) { resultBounds.X --; } } return resultBounds; } } } // 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.Diagnostics.CodeAnalysis; using System; using System.ComponentModel; using System.Drawing; using System.Windows.Forms.Internal; using Microsoft.Win32; using System.Windows.Forms.VisualStyles; ////// /// This class contains the information a user needs to paint ListView items. /// public class DrawListViewItemEventArgs : EventArgs { private readonly Graphics graphics; private readonly ListViewItem item; private readonly Rectangle bounds; private readonly int itemIndex; private readonly ListViewItemStates state; private bool drawDefault; ////// /// Creates a new DrawListViewItemEventArgs with the given parameters. /// public DrawListViewItemEventArgs(Graphics graphics, ListViewItem item, Rectangle bounds, int itemIndex, ListViewItemStates state) { this.graphics = graphics; this.item = item; this.bounds = bounds; this.itemIndex = itemIndex; this.state = state; this.drawDefault = false; } ////// /// Causes the item do be drawn by the system instead of owner drawn. /// public bool DrawDefault { get { return drawDefault; } set { drawDefault = value; } } ////// /// Graphics object with which painting should be done. /// public Graphics Graphics { get { return graphics; } } ////// /// The item to be painted. /// public ListViewItem Item { get { return item; } } ////// /// The rectangle outlining the area in which the painting should be done. /// public Rectangle Bounds { get { return bounds; } } ////// /// The index of the item that should be painted. /// public int ItemIndex { get { return itemIndex; } } ////// /// Miscellaneous state information. /// public ListViewItemStates State { get { return state; } } ////// /// Draws the item's background. /// public void DrawBackground() { Brush backBrush = new SolidBrush(item.BackColor); Graphics.FillRectangle(backBrush, bounds); backBrush.Dispose(); } ////// /// Draws a focus rectangle in the given bounds, if the item is focused. In Details View, if FullRowSelect is /// true, the rectangle is drawn around the whole item, else around the first sub-item's text area. /// public void DrawFocusRectangle() { if ((state & ListViewItemStates.Focused) == ListViewItemStates.Focused) { Rectangle focusBounds = bounds; ControlPaint.DrawFocusRectangle(graphics, UpdateBounds(focusBounds, false /*drawText*/), item.ForeColor, item.BackColor); } } ////// /// Draws the item's text (overloaded) - useful only when View != View.Details /// public void DrawText() { DrawText(TextFormatFlags.Left); } ////// /// Draws the item's text (overloaded) - useful only when View != View.Details - takes a TextFormatFlags argument. /// public void DrawText(TextFormatFlags flags) { TextRenderer.DrawText(graphics, item.Text, item.Font, UpdateBounds(bounds, true /*drawText*/), item.ForeColor, flags); } private Rectangle UpdateBounds(Rectangle originalBounds, bool drawText) { Rectangle resultBounds = originalBounds; if (item.ListView.View == View.Details) { // Note: this logic will compute the bounds so they align w/ the system drawn bounds only // for the default font. if (!item.ListView.FullRowSelect && item.SubItems.Count > 0) { ListViewItem.ListViewSubItem subItem = item.SubItems[0]; Size textSize = TextRenderer.MeasureText(subItem.Text, subItem.Font); resultBounds = new Rectangle(originalBounds.X, originalBounds.Y, textSize.Width, textSize.Height); // Add some padding so we paint like the system control paints. resultBounds.X += 4; resultBounds.Width ++; } else { resultBounds.X +=4; resultBounds.Width -= 4; } if (drawText) { resultBounds.X --; } } return resultBounds; } } } // 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
- DiscreteKeyFrames.cs
- DataFieldConverter.cs
- HttpRuntime.cs
- CompositeClientFormatter.cs
- Stackframe.cs
- AsyncDataRequest.cs
- ChannelSinkStacks.cs
- Size.cs
- SafeCryptHandles.cs
- HandlerBase.cs
- GeneralTransform.cs
- ClickablePoint.cs
- ExeConfigurationFileMap.cs
- AlphaSortedEnumConverter.cs
- ValueSerializer.cs
- CachedPathData.cs
- TraceListener.cs
- ForeignKeyConstraint.cs
- StrongNameMembershipCondition.cs
- WrappedIUnknown.cs
- _emptywebproxy.cs
- ListViewItem.cs
- DataRelationPropertyDescriptor.cs
- MetadataItemEmitter.cs
- Message.cs
- ByteAnimationUsingKeyFrames.cs
- TextParentUndoUnit.cs
- Signature.cs
- RegexCode.cs
- ProcessProtocolHandler.cs
- BindableAttribute.cs
- QilTernary.cs
- ContentValidator.cs
- UrlMappingsSection.cs
- RpcCryptoRequest.cs
- MethodBuilderInstantiation.cs
- CatalogPartChrome.cs
- typedescriptorpermission.cs
- Int16Animation.cs
- RuntimeArgumentHandle.cs
- XPathAncestorQuery.cs
- SqlClientMetaDataCollectionNames.cs
- Converter.cs
- ModelVisual3D.cs
- CompilerGlobalScopeAttribute.cs
- LowerCaseStringConverter.cs
- TagPrefixCollection.cs
- RadioButtonList.cs
- QueryOutputWriter.cs
- Help.cs
- ClickablePoint.cs
- DbParameterHelper.cs
- CodeTypeReferenceCollection.cs
- ImageAutomationPeer.cs
- XmlResolver.cs
- ValidationResult.cs
- ReflectionServiceProvider.cs
- EntityDataSourceViewSchema.cs
- SHA1Managed.cs
- ThumbAutomationPeer.cs
- UrlAuthorizationModule.cs
- FormViewPageEventArgs.cs
- RadioButtonRenderer.cs
- MethodBuilder.cs
- _LoggingObject.cs
- SiteMapNodeItem.cs
- ValueTypeFixupInfo.cs
- SQLResource.cs
- _UncName.cs
- SQlBooleanStorage.cs
- MonthChangedEventArgs.cs
- DependencyPropertyKey.cs
- MenuAutoFormat.cs
- PageCopyCount.cs
- MatrixCamera.cs
- ReturnType.cs
- DisplayInformation.cs
- HttpCachePolicyElement.cs
- ByteViewer.cs
- IResourceProvider.cs
- ConnectionStringsExpressionBuilder.cs
- MimeTypeMapper.cs
- WhileDesigner.xaml.cs
- BitmapEffectState.cs
- Propagator.JoinPropagator.cs
- DataAdapter.cs
- StructuralCache.cs
- DataListCommandEventArgs.cs
- UIAgentAsyncEndRequest.cs
- CompiledELinqQueryState.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- SequenceDesignerAccessibleObject.cs
- WorkflowQueue.cs
- ApplicationFileCodeDomTreeGenerator.cs
- RefreshPropertiesAttribute.cs
- AnonymousIdentificationSection.cs
- EntityDataSourceContainerNameConverter.cs
- Annotation.cs
- CodeStatement.cs
- FontFamily.cs