Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewRow.cs / 1305376 / FormViewRow.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; ////// public class FormViewRow : TableRow { private int _itemIndex; private DataControlRowType _rowType; private DataControlRowState _rowState; ///Represents an individual row in the ///. /// public FormViewRow(int itemIndex, DataControlRowType rowType, DataControlRowState rowState) { this._itemIndex = itemIndex; this._rowType = rowType; this._rowState = rowState; RenderTemplateContainer = true; } ///Initializes a new instance of the ///class. /// public virtual int ItemIndex { get { return _itemIndex; } } ///Indicates the index of the item in the ///. This property is /// read-only. /// public virtual DataControlRowState RowState { get { return _rowState; } } ///Indicates the type of the row in the ///. /// public virtual DataControlRowType RowType { get { return _rowType; } } internal bool RenderTemplateContainer { get; set; } protected internal override void Render(HtmlTextWriter writer) { if (RenderTemplateContainer) { //render the table row normally base.Render(writer); } else { //render the contents of the cells foreach (TableCell cell in Cells) { cell.RenderContents(writer); } } } ///Indicates the type of the row in the ///. /// /// protected override bool OnBubbleEvent(object source, EventArgs e) { if (e is CommandEventArgs) { FormViewCommandEventArgs args = new FormViewCommandEventArgs(source, (CommandEventArgs)e); RaiseBubbleEvent(this, args); return true; } return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; ////// public class FormViewRow : TableRow { private int _itemIndex; private DataControlRowType _rowType; private DataControlRowState _rowState; ///Represents an individual row in the ///. /// public FormViewRow(int itemIndex, DataControlRowType rowType, DataControlRowState rowState) { this._itemIndex = itemIndex; this._rowType = rowType; this._rowState = rowState; RenderTemplateContainer = true; } ///Initializes a new instance of the ///class. /// public virtual int ItemIndex { get { return _itemIndex; } } ///Indicates the index of the item in the ///. This property is /// read-only. /// public virtual DataControlRowState RowState { get { return _rowState; } } ///Indicates the type of the row in the ///. /// public virtual DataControlRowType RowType { get { return _rowType; } } internal bool RenderTemplateContainer { get; set; } protected internal override void Render(HtmlTextWriter writer) { if (RenderTemplateContainer) { //render the table row normally base.Render(writer); } else { //render the contents of the cells foreach (TableCell cell in Cells) { cell.RenderContents(writer); } } } ///Indicates the type of the row in the ///. /// /// protected override bool OnBubbleEvent(object source, EventArgs e) { if (e is CommandEventArgs) { FormViewCommandEventArgs args = new FormViewCommandEventArgs(source, (CommandEventArgs)e); RaiseBubbleEvent(this, args); return true; } return false; } } } // 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
- MimeTypeMapper.cs
- CodeSubDirectoriesCollection.cs
- Control.cs
- StringBlob.cs
- DictionaryContent.cs
- ExpressionPrefixAttribute.cs
- SqlCachedBuffer.cs
- URLString.cs
- VisualBrush.cs
- PixelFormat.cs
- TargetException.cs
- PropertyTabChangedEvent.cs
- RegexReplacement.cs
- DataBindingCollection.cs
- MergablePropertyAttribute.cs
- ImageDesigner.cs
- ApplicationException.cs
- OneOfScalarConst.cs
- _ListenerResponseStream.cs
- ProcessDesigner.cs
- PolyQuadraticBezierSegment.cs
- ReadOnlyDataSource.cs
- Walker.cs
- XPathDocument.cs
- GroupItemAutomationPeer.cs
- BuildManagerHost.cs
- UnsafeNativeMethodsMilCoreApi.cs
- AnimationClockResource.cs
- EventMappingSettingsCollection.cs
- HttpCachePolicyElement.cs
- DrawListViewColumnHeaderEventArgs.cs
- PointHitTestParameters.cs
- InternalConfigHost.cs
- FileDialogCustomPlace.cs
- StreamAsIStream.cs
- CodeArrayCreateExpression.cs
- InstanceDataCollectionCollection.cs
- Inline.cs
- DoubleConverter.cs
- SafeRightsManagementQueryHandle.cs
- SrgsText.cs
- AddInActivator.cs
- ProcessHostMapPath.cs
- DataGridViewRow.cs
- CodeDelegateInvokeExpression.cs
- ToolTip.cs
- WebErrorHandler.cs
- PathFigure.cs
- ProcessModelInfo.cs
- MemberNameValidator.cs
- ConfigurationSettings.cs
- SQLDouble.cs
- AssociationSetEnd.cs
- SqlInternalConnection.cs
- ADMembershipUser.cs
- DelayDesigner.cs
- TCEAdapterGenerator.cs
- ServicesUtilities.cs
- CodeAccessSecurityEngine.cs
- ImpersonationContext.cs
- PreservationFileReader.cs
- JapaneseLunisolarCalendar.cs
- TableRowsCollectionEditor.cs
- Span.cs
- ObjectViewListener.cs
- SecuritySessionClientSettings.cs
- NameScopePropertyAttribute.cs
- CodeStatement.cs
- QuotedPrintableStream.cs
- PropertyManager.cs
- IndependentAnimationStorage.cs
- TextOptionsInternal.cs
- TransformerTypeCollection.cs
- TimelineGroup.cs
- AcceptorSessionSymmetricMessageSecurityProtocol.cs
- ClusterRegistryConfigurationProvider.cs
- AlphabeticalEnumConverter.cs
- DataGridLinkButton.cs
- NavigationProgressEventArgs.cs
- ThreadSafeList.cs
- CopyNamespacesAction.cs
- DescendantQuery.cs
- CriticalExceptions.cs
- UIServiceHelper.cs
- ParameterToken.cs
- StrongNameMembershipCondition.cs
- X509KeyIdentifierClauseType.cs
- CommandHelpers.cs
- SafeFileMappingHandle.cs
- XmlWhitespace.cs
- DateTimeAutomationPeer.cs
- HostedTcpTransportManager.cs
- ListCommandEventArgs.cs
- DeviceFilterDictionary.cs
- EnvelopedPkcs7.cs
- IntSecurity.cs
- HttpProfileGroupBase.cs
- WebBrowserProgressChangedEventHandler.cs
- RowParagraph.cs
- InkPresenter.cs