Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewRowPostPaintEventArgs.cs / 1305376 / DataGridViewRowPostPaintEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Drawing; using System.ComponentModel; using System.Diagnostics; ///public class DataGridViewRowPostPaintEventArgs : EventArgs { private DataGridView dataGridView; private Graphics graphics; private Rectangle clipBounds; private Rectangle rowBounds; private DataGridViewCellStyle inheritedRowStyle; private int rowIndex; private DataGridViewElementStates rowState; private string errorText; private bool isFirstDisplayedRow; private bool isLastVisibleRow; /// public DataGridViewRowPostPaintEventArgs(DataGridView dataGridView, Graphics graphics, Rectangle clipBounds, Rectangle rowBounds, int rowIndex, DataGridViewElementStates rowState, string errorText, DataGridViewCellStyle inheritedRowStyle, bool isFirstDisplayedRow, bool isLastVisibleRow) { if (dataGridView == null) { throw new ArgumentNullException("dataGridView"); } if (graphics == null) { throw new ArgumentNullException("graphics"); } if (inheritedRowStyle == null) { throw new ArgumentNullException("inheritedRowStyle"); } this.dataGridView = dataGridView; this.graphics = graphics; this.clipBounds = clipBounds; this.rowBounds = rowBounds; this.rowIndex = rowIndex; this.rowState = rowState; this.errorText = errorText; this.inheritedRowStyle = inheritedRowStyle; this.isFirstDisplayedRow = isFirstDisplayedRow; this.isLastVisibleRow = isLastVisibleRow; } internal DataGridViewRowPostPaintEventArgs(DataGridView dataGridView) { Debug.Assert(dataGridView != null); this.dataGridView = dataGridView; } /// public Rectangle ClipBounds { get { return this.clipBounds; } set { this.clipBounds = value; } } /// public string ErrorText { get { return this.errorText; } } /// public Graphics Graphics { get { return this.graphics; } } /// public DataGridViewCellStyle InheritedRowStyle { get { return this.inheritedRowStyle; } } /// public bool IsFirstDisplayedRow { get { return this.isFirstDisplayedRow; } } /// public bool IsLastVisibleRow { get { return this.isLastVisibleRow; } } /// public Rectangle RowBounds { get { return this.rowBounds; } } /// public int RowIndex { get { return this.rowIndex; } } /// public DataGridViewElementStates State { get { return this.rowState; } } /// public void DrawFocus(Rectangle bounds, bool cellsPaintSelectionBackground) { if (this.rowIndex < 0 || this.rowIndex >= this.dataGridView.Rows.Count) { throw new InvalidOperationException(SR.GetString(SR.DataGridViewElementPaintingEventArgs_RowIndexOutOfRange)); } this.dataGridView.Rows.SharedRow(rowIndex).DrawFocus(this.graphics, this.clipBounds, bounds, this.rowIndex, this.rowState, this.inheritedRowStyle, cellsPaintSelectionBackground); } /// public void PaintCells(Rectangle clipBounds, DataGridViewPaintParts paintParts) { if (this.rowIndex < 0 || this.rowIndex >= this.dataGridView.Rows.Count) { throw new InvalidOperationException(SR.GetString(SR.DataGridViewElementPaintingEventArgs_RowIndexOutOfRange)); } this.dataGridView.Rows.SharedRow(rowIndex).PaintCells(this.graphics, clipBounds, this.rowBounds, this.rowIndex, this.rowState, this.isFirstDisplayedRow, this.isLastVisibleRow, paintParts); } /// public void PaintCellsBackground(Rectangle clipBounds, bool cellsPaintSelectionBackground) { if (this.rowIndex < 0 || this.rowIndex >= this.dataGridView.Rows.Count) { throw new InvalidOperationException(SR.GetString(SR.DataGridViewElementPaintingEventArgs_RowIndexOutOfRange)); } DataGridViewPaintParts paintParts = DataGridViewPaintParts.Background | DataGridViewPaintParts.Border; if (cellsPaintSelectionBackground) { paintParts |= DataGridViewPaintParts.SelectionBackground; } this.dataGridView.Rows.SharedRow(rowIndex).PaintCells(this.graphics, clipBounds, this.rowBounds, this.rowIndex, this.rowState, this.isFirstDisplayedRow, this.isLastVisibleRow, paintParts); } /// public void PaintCellsContent(Rectangle clipBounds) { if (this.rowIndex < 0 || this.rowIndex >= this.dataGridView.Rows.Count) { throw new InvalidOperationException(SR.GetString(SR.DataGridViewElementPaintingEventArgs_RowIndexOutOfRange)); } this.dataGridView.Rows.SharedRow(rowIndex).PaintCells(this.graphics, clipBounds, this.rowBounds, this.rowIndex, this.rowState, this.isFirstDisplayedRow, this.isLastVisibleRow, DataGridViewPaintParts.ContentBackground | DataGridViewPaintParts.ContentForeground | DataGridViewPaintParts.ErrorIcon); } /// public void PaintHeader(bool paintSelectionBackground) { DataGridViewPaintParts paintParts = DataGridViewPaintParts.Background | DataGridViewPaintParts.Border | DataGridViewPaintParts.ContentBackground | DataGridViewPaintParts.ContentForeground | DataGridViewPaintParts.ErrorIcon; if (paintSelectionBackground) { paintParts |= DataGridViewPaintParts.SelectionBackground; } PaintHeader(paintParts); } /// public void PaintHeader(DataGridViewPaintParts paintParts) { if (this.rowIndex < 0 || this.rowIndex >= this.dataGridView.Rows.Count) { throw new InvalidOperationException(SR.GetString(SR.DataGridViewElementPaintingEventArgs_RowIndexOutOfRange)); } this.dataGridView.Rows.SharedRow(rowIndex).PaintHeader(this.graphics, this.clipBounds, this.rowBounds, this.rowIndex, this.rowState, this.isFirstDisplayedRow, this.isLastVisibleRow, paintParts); } internal void SetProperties(Graphics graphics, Rectangle clipBounds, Rectangle rowBounds, int rowIndex, DataGridViewElementStates rowState, string errorText, DataGridViewCellStyle inheritedRowStyle, bool isFirstDisplayedRow, bool isLastVisibleRow) { Debug.Assert(graphics != null); Debug.Assert(inheritedRowStyle != null); this.graphics = graphics; this.clipBounds = clipBounds; this.rowBounds = rowBounds; this.rowIndex = rowIndex; this.rowState = rowState; this.errorText = errorText; this.inheritedRowStyle = inheritedRowStyle; this.isFirstDisplayedRow = isFirstDisplayedRow; this.isLastVisibleRow = isLastVisibleRow; } } } // 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
- AuthenticateEventArgs.cs
- HuffCodec.cs
- TextContainerChangeEventArgs.cs
- SafeFileMappingHandle.cs
- FileDataSourceCache.cs
- HttpListenerTimeoutManager.cs
- TypeTypeConverter.cs
- CompiledELinqQueryState.cs
- ReadWriteObjectLock.cs
- ClientSettings.cs
- ResponseStream.cs
- DataTableMapping.cs
- StaticFileHandler.cs
- XsltConvert.cs
- URLIdentityPermission.cs
- TextServicesLoader.cs
- MessageDecoder.cs
- ValidationErrorCollection.cs
- designeractionbehavior.cs
- DataFormats.cs
- ParagraphResult.cs
- ExpressionPrefixAttribute.cs
- ArrayConverter.cs
- CustomCredentialPolicy.cs
- GlyphInfoList.cs
- StoragePropertyMapping.cs
- QilTypeChecker.cs
- TemplateXamlParser.cs
- DataPagerFieldCommandEventArgs.cs
- DetailsViewInsertedEventArgs.cs
- Typography.cs
- Shape.cs
- ShaderEffect.cs
- OracleCommand.cs
- AssociationSet.cs
- HttpRequestTraceRecord.cs
- SqlDataSourceConfigureSelectPanel.cs
- SR.cs
- SmtpNetworkElement.cs
- XPathChildIterator.cs
- StreamSecurityUpgradeAcceptorBase.cs
- ImageSource.cs
- MulticastOption.cs
- DataRowChangeEvent.cs
- SamlAssertionKeyIdentifierClause.cs
- TablePattern.cs
- PeerName.cs
- RequiredFieldValidator.cs
- SqlAliasesReferenced.cs
- Debugger.cs
- SafeFileMappingHandle.cs
- XmlSchemaComplexContentRestriction.cs
- DynamicMethod.cs
- Utility.cs
- CrossAppDomainChannel.cs
- CompilerGlobalScopeAttribute.cs
- Brushes.cs
- ReflectTypeDescriptionProvider.cs
- EntityDataSourceSelectingEventArgs.cs
- BmpBitmapDecoder.cs
- ElementNotAvailableException.cs
- IisTraceWebEventProvider.cs
- StaticFileHandler.cs
- CultureInfoConverter.cs
- XmlCDATASection.cs
- FolderBrowserDialog.cs
- SpeechAudioFormatInfo.cs
- XmlLinkedNode.cs
- EpmAttributeNameBuilder.cs
- FormViewRow.cs
- Cursor.cs
- SortAction.cs
- BaseValidator.cs
- ArrayTypeMismatchException.cs
- AppliedDeviceFiltersDialog.cs
- Msec.cs
- SqlDataReaderSmi.cs
- CompilerGeneratedAttribute.cs
- DateTimePicker.cs
- RowUpdatedEventArgs.cs
- DesignTimeParseData.cs
- Quaternion.cs
- TriggerAction.cs
- PropertyMetadata.cs
- DataBindingHandlerAttribute.cs
- TextSerializer.cs
- HtmlInputReset.cs
- ProfileSection.cs
- DataObjectPastingEventArgs.cs
- ExceptionUtil.cs
- BufferModesCollection.cs
- OutArgument.cs
- InputBindingCollection.cs
- GeometryConverter.cs
- ConfigurationManagerHelper.cs
- IDReferencePropertyAttribute.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- HyperLink.cs
- Identifier.cs
- ImageInfo.cs