Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewRow.cs / 1 / GridViewRow.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class GridViewRow : TableRow, IDataItemContainer { private int _rowIndex; private int _dataItemIndex; private DataControlRowType _rowType; private DataControlRowState _rowState; private object _dataItem; ///Represents an individual row in the ///. /// public GridViewRow(int rowIndex, int dataItemIndex, DataControlRowType rowType, DataControlRowState rowState) { this._rowIndex = rowIndex; this._dataItemIndex = dataItemIndex; this._rowType = rowType; this._rowState = rowState; } ///Initializes a new instance of the ///class. /// public virtual object DataItem { get { return _dataItem; } set { _dataItem = value; } } ///Represents an item in the ///. /// public virtual int DataItemIndex { get { return _dataItemIndex; } } ///Indicates the data set index number. This property is read-only. ////// public virtual int RowIndex { get { return _rowIndex; } } ///Indicates the index of the row in the ///. This property is /// read-only. /// public virtual DataControlRowState RowState { get { return _rowState; } set { _rowState = value; } } ///Indicates the type of the row in the ///. /// public virtual DataControlRowType RowType { get { return _rowType; } set { _rowType = value; } } ///Indicates the type of the row in the ///. /// /// protected override bool OnBubbleEvent(object source, EventArgs e) { if (e is CommandEventArgs) { GridViewCommandEventArgs args = new GridViewCommandEventArgs(this, source, (CommandEventArgs)e); RaiseBubbleEvent(this, args); return true; } return false; } ////// /// object IDataItemContainer.DataItem { get { return DataItem; } } int IDataItemContainer.DataItemIndex { get { return DataItemIndex; } } int IDataItemContainer.DisplayIndex { get { return RowIndex; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- remotingproxy.cs
- ModelPerspective.cs
- SetterBaseCollection.cs
- ActivityExecutorOperation.cs
- URLString.cs
- DbMetaDataColumnNames.cs
- SqlCharStream.cs
- ExportException.cs
- Light.cs
- DSACryptoServiceProvider.cs
- ComboBoxDesigner.cs
- SQLBinaryStorage.cs
- BinHexDecoder.cs
- CategoryGridEntry.cs
- LayoutEvent.cs
- ToolStripItemEventArgs.cs
- EmptyControlCollection.cs
- PackageStore.cs
- BulletDecorator.cs
- XmlDeclaration.cs
- SafeViewOfFileHandle.cs
- ListViewItemSelectionChangedEvent.cs
- _NtlmClient.cs
- ContravarianceAdapter.cs
- Console.cs
- UndirectedGraph.cs
- ToolStripContainer.cs
- DocumentApplicationJournalEntry.cs
- TraceHelpers.cs
- App.cs
- TableCellCollection.cs
- ZoneLinkButton.cs
- WindowsSpinner.cs
- ApplicationInfo.cs
- ExceptionUtil.cs
- FreezableDefaultValueFactory.cs
- DataBindingExpressionBuilder.cs
- PenThread.cs
- Selection.cs
- TagNameToTypeMapper.cs
- XmlSchemaComplexType.cs
- MarshalByRefObject.cs
- PolyLineSegment.cs
- OdbcInfoMessageEvent.cs
- TextSerializer.cs
- RequestUriProcessor.cs
- ReturnType.cs
- ListViewItemEventArgs.cs
- MatrixTransform3D.cs
- TcpStreams.cs
- WebPartVerb.cs
- Int32KeyFrameCollection.cs
- WebSysDisplayNameAttribute.cs
- MethodBuilderInstantiation.cs
- XhtmlBasicValidationSummaryAdapter.cs
- StringValidatorAttribute.cs
- ObjectListCommandsPage.cs
- NameValueFileSectionHandler.cs
- GradientStop.cs
- DeviceContext.cs
- QuestionEventArgs.cs
- DateTimeParse.cs
- SplayTreeNode.cs
- EntitySet.cs
- ObjectDataSourceSelectingEventArgs.cs
- InvocationExpression.cs
- OdbcReferenceCollection.cs
- _AuthenticationState.cs
- SelectionRangeConverter.cs
- MD5HashHelper.cs
- BadImageFormatException.cs
- ModulesEntry.cs
- GPRECT.cs
- BaseEntityWrapper.cs
- VerificationAttribute.cs
- NameValuePair.cs
- CodeConstructor.cs
- ObjectStateManagerMetadata.cs
- OpenFileDialog.cs
- TaskFormBase.cs
- InternalEnumValidatorAttribute.cs
- Internal.cs
- PrimitiveSchema.cs
- PostBackOptions.cs
- RealizedColumnsBlock.cs
- CSharpCodeProvider.cs
- QilReplaceVisitor.cs
- WorkItem.cs
- ReadOnlyCollection.cs
- HttpApplicationFactory.cs
- XmlDomTextWriter.cs
- SecurityChannelFactory.cs
- TargetPerspective.cs
- InternalResources.cs
- MatrixTransform.cs
- IntSecurity.cs
- ToolboxDataAttribute.cs
- Point.cs
- SqlServer2KCompatibilityCheck.cs
- State.cs