当前位置: 首页>>代码示例>>C#>>正文


C# DynamicTable.AddRow方法代码示例

本文整理汇总了C#中DynamicTable.AddRow方法的典型用法代码示例。如果您正苦于以下问题:C# DynamicTable.AddRow方法的具体用法?C# DynamicTable.AddRow怎么用?C# DynamicTable.AddRow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DynamicTable的用法示例。


在下文中一共展示了DynamicTable.AddRow方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: buildTree

        private DynamicTable buildTree( string name, IEnumerable<MergeRow> emptyRowTree )
        {
            var singleRow = emptyRowTree.Single();

            var table = new DynamicTable( new EwfTableColumn( "Field name" ), new EwfTableColumn( "Description" ) ) { Caption = name };
            foreach( var field in singleRow.Values )
                table.AddTextRow( getFieldNameCellText( field ), field.GetDescription() );

            foreach( var child in singleRow.Children ) {
                var panel = new Panel();
                panel.Style.Add( HtmlTextWriterStyle.MarginLeft, "2em" );
                panel.Controls.Add( buildTree( child.NodeName, child.Rows ) );

                table.AddRow( panel.ToCell( new TableCellSetup( fieldSpan: 2 ) ) );
            }

            return table;
        }
开发者ID:william-gross,项目名称:enterprise-web-library,代码行数:18,代码来源:MergeFieldTree.cs

示例2: EmptyCellCreator

        void ControlTreeDataLoader.LoadData()
        {
            var table = new DynamicTable { IsStandard = false };

            var controls = codeControls;
            if( HideIfEmpty && controls.Count == 0 ) {
                Visible = false;
                return;
            }
            var firstPassThroughRowLoop = true;
            for( var i = 0; i < controls.Count; i += NumberOfColumns ) {
                // spacer row
                if( !firstPassThroughRowLoop ) {
                    var spacerRowCount = SpacerCellSetup.RowSpacerCellCreator().Count;
                    for( var spacerRowIndex = 0; spacerRowIndex < spacerRowCount; spacerRowIndex += 1 ) {
                        var firstPassThroughSpacerRowColumnLoop = true;
                        var spacerRowCells = new List<EwfTableCell>();
                        for( var spacerRowColumnIndex = 0; spacerRowColumnIndex < NumberOfColumns; spacerRowColumnIndex += 1 ) {
                            if( !firstPassThroughSpacerRowColumnLoop )
                                spacerRowCells.AddRange( SpacerCellSetup.RowAndColumnSpacerCellCreator()[ spacerRowIndex ] );
                            spacerRowCells.Add( SpacerCellSetup.RowSpacerCellCreator()[ spacerRowIndex ] );
                            firstPassThroughSpacerRowColumnLoop = false;
                        }
                        table.AddRow( spacerRowCells.ToArray() );
                    }
                }

                // content row
                var firstPassThroughColumnLoop = true;
                var cells = new List<EwfTableCell>();
                for( var columnIndex = 0; columnIndex < NumberOfColumns; columnIndex += 1 ) {
                    // spacer cells
                    if( !firstPassThroughColumnLoop )
                        cells.AddRange( SpacerCellSetup.ColumnSpacerCellCreator() );

                    // content cell

                    if( firstPassThroughRowLoop && CaptionControl != null ) {
                        cells.Add( CaptionControl );
                        i -= NumberOfColumns;
                    }
                    else {
                        var controlIndex = i + columnIndex;
                        if( controlIndex < controls.Count )
                            cells.Add( controls[ controlIndex ] );
                        else
                            cells.Add( EmptyCellCreator() );
                    }
                    firstPassThroughColumnLoop = false;
                }
                table.AddRow( cells.ToArray() );

                firstPassThroughRowLoop = false;
            }

            Controls.Add( table );
        }
开发者ID:william-gross,项目名称:enterprise-web-library,代码行数:57,代码来源:ControlList.cs

示例3: addFileRow

        private void addFileRow( DynamicTable table, BlobFile file, ActionPostBack deletePb, List<Func<bool>> deleteModMethods )
        {
            var cells = new List<EwfTableCell>();

            var thumbnailControl = BlobFileOps.GetThumbnailControl( file, ThumbnailResourceInfoCreator );
            if( thumbnailControl != null )
                cells.Add( thumbnailControl );

            var fileIsUnread = fileIdsMarkedAsRead != null && !fileIdsMarkedAsRead.Contains( file.FileId );

            cells.Add(
                new PostBackButton(
                    PostBack.CreateFull(
                        id: PostBack.GetCompositeId( postBackIdBase, file.FileId.ToString() ),
                        firstModificationMethod: () => {
                            if( fileIsUnread && markFileAsReadMethod != null )
                                markFileAsReadMethod( file.FileId );
                        },
                        actionGetter: () => new PostBackAction( new SecondaryResponse( new BlobFileResponse( file.FileId, () => true ), false ) ) ),
                    new TextActionControlStyle( file.FileName ),
                    false ) { ToolTip = file.FileName } );

            cells.Add( file.UploadedDate.ToDayMonthYearString( false ) );
            cells.Add( ( fileIsUnread ? "New!" : "" ).ToCell( new TableCellSetup( classes: "ewfNewness".ToSingleElementArray() ) ) );

            var delete = false;
            var deleteCheckBox =
                FormItem.Create(
                    "",
                    new EwfCheckBox( false, postBack: deletePb ),
                    validationGetter: control => new EwfValidation( ( pbv, v ) => { delete = control.IsCheckedInPostBack( pbv ); }, deletePb ) ).ToControl();
            cells.Add( ReadOnly ? null : deleteCheckBox );
            deleteModMethods.Add(
                () => {
                    if( !delete )
                        return false;
                    BlobFileOps.SystemProvider.DeleteFile( file.FileId );
                    return true;
                } );

            table.AddRow( cells.ToArray() );
        }
开发者ID:william-gross,项目名称:enterprise-web-library,代码行数:42,代码来源:BlobFileCollectionManager.cs

示例4: HtmlGenericControl

        void ControlTreeDataLoader.LoadData()
        {
            CssClass = CssClass.ConcatenateWithSpace( "ewfStandardFileCollectionManager" );

            if( AppRequestState.Instance.Browser.IsInternetExplorer() ) {
                base.Controls.Add(
                    new HtmlGenericControl( "p" )
                        {
                            InnerText =
                                "Because you are using Internet Explorer, clicking on a file below will result in a yellow warning bar appearing near the top of the browser.  You will need to then click the warning bar and tell Internet Explorer you are sure you want to download the file."
                        } );
            }

            var columnSetups = new List<ColumnSetup>();
            if( ThumbnailResourceInfoCreator != null )
                columnSetups.Add( new ColumnSetup { Width = Unit.Percentage( 10 ) } );
            columnSetups.Add( new ColumnSetup { CssClassOnAllCells = "ewfOverflowedCell" } );
            columnSetups.Add( new ColumnSetup { Width = Unit.Percentage( 13 ) } );
            columnSetups.Add( new ColumnSetup { Width = Unit.Percentage( 7 ) } );
            columnSetups.Add( new ColumnSetup { Width = Unit.Percentage( 23 ), CssClassOnAllCells = "ewfRightAlignCell" } );

            var table = new DynamicTable( columnSetups.ToArray() ) { Caption = Caption };

            files = BlobFileOps.SystemProvider.GetFilesLinkedToFileCollection( fileCollectionId );
            files = ( sortByName ? files.OrderByName() : files.OrderByUploadedDateDescending() ).ToArray();

            var deletePb = PostBack.CreateFull( id: PostBack.GetCompositeId( postBackIdBase, "delete" ) );
            var deleteModMethods = new List<Func<bool>>();
            foreach( var file in files )
                addFileRow( table, file, deletePb, deleteModMethods );
            if( !ReadOnly ) {
                table.AddRow(
                    getUploadControlList().ToCell( new TableCellSetup( fieldSpan: ThumbnailResourceInfoCreator != null ? 3 : 2 ) ),
                    ( files.Any() ? new PostBackButton( deletePb, new ButtonActionControlStyle( "Delete Selected Files" ), usesSubmitBehavior: false ) : null ).ToCell(
                        new TableCellSetup( fieldSpan: 2, classes: "ewfRightAlignCell".ToSingleElementArray() ) ) );
            }
            deletePb.AddModificationMethod(
                () => {
                    if( deleteModMethods.Aggregate( false, ( deletesOccurred, method ) => method() || deletesOccurred ) )
                        EwfPage.AddStatusMessage( StatusMessageType.Info, "Selected files deleted successfully." );
                } );

            Controls.Add( table );

            if( ReadOnly && !files.Any() )
                Visible = false;
        }
开发者ID:william-gross,项目名称:enterprise-web-library,代码行数:47,代码来源:BlobFileCollectionManager.cs

示例5: buildNavigationBox

        private void buildNavigationBox()
        {
            var jumpList =
                SelectList.CreateDropDown(
                    from i in Enumerable.Range( -3, 7 ) select SelectListItem.Create( i, formatDateTimeForJumpList( adjustDateByNumberOfIntervals( date, i ) ) ),
                    0,
                    autoPostBack: true );
            jumpList.Width = JumpListWidth;
            var numIntervals = 0;
            EwfPage.Instance.DataUpdate.AddTopValidationMethod( ( pbv, validator ) => numIntervals = jumpList.ValidateAndGetSelectedItemIdInPostBack( pbv, validator ) );
            EwfPage.Instance.DataUpdate.AddModificationMethod( () => dateModificationMethod( adjustDateByNumberOfIntervals( date, numIntervals ) ) );

            var previousLink =
                new PostBackButton(
                    PostBack.CreateFull( id: "prev", firstModificationMethod: () => dateModificationMethod( adjustDateByNumberOfIntervals( date, -1 ) ) ),
                    PreviousButton,
                    usesSubmitBehavior: false );
            var todayLink = new PostBackButton(
                PostBack.CreateFull( id: "today", firstModificationMethod: () => dateModificationMethod( DateTime.Today ) ),
                CurrentDateButton,
                usesSubmitBehavior: false );
            var nextLink =
                new PostBackButton(
                    PostBack.CreateFull( id: "next", firstModificationMethod: () => dateModificationMethod( adjustDateByNumberOfIntervals( date, 1 ) ) ),
                    NextButton,
                    usesSubmitBehavior: false );

            var table = new DynamicTable { CssClass = "calendarViewHeader ewfNavigationBoxHeader", IsStandard = false };
            var navControls = new Panel();
            foreach( var postBackButton in new List<PostBackButton> { previousLink, todayLink, nextLink } )
                navControls.Controls.Add( postBackButton );

            table.AddRow( jumpList, navControls.ToCell( new TableCellSetup( classes: "calendarViewNavButtons".ToSingleElementArray() ) ) );
            Controls.Add( table );
        }
开发者ID:william-gross,项目名称:enterprise-web-library,代码行数:35,代码来源:MonthViewCalendar.cs


注:本文中的DynamicTable.AddRow方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。