Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / WinForms / Managed / System / WinForms / TableLayoutCellPaintEventArgs.cs / 1 / TableLayoutCellPaintEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Drawing.Design; using System.Globalization; using System.Windows.Forms.Layout; ////// /// This is the overrided PaintEventArgs for painting the cell of the table /// It contains additional information indicating the row/column of the cell /// as well as the bound of the cell /// public class TableLayoutCellPaintEventArgs : PaintEventArgs { private Rectangle bounds; private int row; private int column; ///public TableLayoutCellPaintEventArgs(Graphics g, Rectangle clipRectangle, Rectangle cellBounds, int column, int row) : base(g, clipRectangle) { this.bounds = cellBounds; this.row = row; this.column = column; } //the bounds of the cell /// public Rectangle CellBounds { get { return bounds; } } //the row index of the cell /// public int Row { get { return row; } } //the column index of the cell /// public int Column { get { return column; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Drawing.Design; using System.Globalization; using System.Windows.Forms.Layout; ////// /// This is the overrided PaintEventArgs for painting the cell of the table /// It contains additional information indicating the row/column of the cell /// as well as the bound of the cell /// public class TableLayoutCellPaintEventArgs : PaintEventArgs { private Rectangle bounds; private int row; private int column; ///public TableLayoutCellPaintEventArgs(Graphics g, Rectangle clipRectangle, Rectangle cellBounds, int column, int row) : base(g, clipRectangle) { this.bounds = cellBounds; this.row = row; this.column = column; } //the bounds of the cell /// public Rectangle CellBounds { get { return bounds; } } //the row index of the cell /// public int Row { get { return row; } } //the column index of the cell /// public int Column { get { return column; } } } } // 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
- AdCreatedEventArgs.cs
- Binding.cs
- DbConnectionPoolGroup.cs
- SQLGuid.cs
- ValueQuery.cs
- GridViewUpdateEventArgs.cs
- DataRowView.cs
- RegistryPermission.cs
- CancellationToken.cs
- DPAPIProtectedConfigurationProvider.cs
- ComponentRenameEvent.cs
- Encoder.cs
- WindowVisualStateTracker.cs
- webclient.cs
- FormClosedEvent.cs
- LocalizableAttribute.cs
- PrintPageEvent.cs
- altserialization.cs
- DataContext.cs
- VersionPair.cs
- PropertyDescriptor.cs
- CursorConverter.cs
- TextRenderer.cs
- StateFinalizationDesigner.cs
- WebConfigurationHostFileChange.cs
- TreeWalker.cs
- AssertFilter.cs
- WindowsAuthenticationEventArgs.cs
- altserialization.cs
- COM2DataTypeToManagedDataTypeConverter.cs
- TransactionChannelFaultConverter.cs
- ConfigurationFileMap.cs
- LinkUtilities.cs
- _AcceptOverlappedAsyncResult.cs
- KeyEventArgs.cs
- DataGridViewTextBoxCell.cs
- XPathDocument.cs
- FastEncoder.cs
- DrawTreeNodeEventArgs.cs
- XmlTextWriter.cs
- BindableAttribute.cs
- BinaryConverter.cs
- SqlWorkflowInstanceStoreLock.cs
- Drawing.cs
- SortDescription.cs
- TransactionException.cs
- SendAgentStatusRequest.cs
- TrackingMemoryStream.cs
- CompiledQueryCacheKey.cs
- XpsManager.cs
- EdmError.cs
- EdmTypeAttribute.cs
- mediaeventargs.cs
- CompressedStack.cs
- ToolboxDataAttribute.cs
- ColumnPropertiesGroup.cs
- GenericRootAutomationPeer.cs
- BinaryKeyIdentifierClause.cs
- ConfigurationValues.cs
- CalendarTable.cs
- StringAnimationBase.cs
- BrowserCapabilitiesFactoryBase.cs
- SID.cs
- StringComparer.cs
- remotingproxy.cs
- XamlDesignerSerializationManager.cs
- FlowLayoutPanel.cs
- WebPartEditorCancelVerb.cs
- DataProtection.cs
- MouseGestureConverter.cs
- ClientRolePrincipal.cs
- HtmlElement.cs
- MsmqMessage.cs
- MaterialCollection.cs
- DataGridViewRow.cs
- BasicHttpSecurity.cs
- OperationCanceledException.cs
- DataExpression.cs
- PreviewPageInfo.cs
- EmptyWorkItem.cs
- TextEditorTyping.cs
- bindurihelper.cs
- ObjectHandle.cs
- RMPublishingDialog.cs
- TagPrefixInfo.cs
- CellTreeNode.cs
- UnmanagedHandle.cs
- DetailsView.cs
- HtmlShim.cs
- ToolStripComboBox.cs
- ColumnWidthChangedEvent.cs
- BooleanConverter.cs
- OleDbReferenceCollection.cs
- FileDataSourceCache.cs
- ContainerFilterService.cs
- CapabilitiesUse.cs
- WebEventTraceProvider.cs
- Range.cs
- DrawingBrush.cs
- HierarchicalDataBoundControlAdapter.cs