mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 13:37:35 +08:00
40 lines
824 B
C#
40 lines
824 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class ColumnContext
|
|
{
|
|
public IList<IColumn> Columns { get; set; } = new List<IColumn>();
|
|
|
|
private int CurrentColIndex { get; set; }
|
|
|
|
public void AddHeaderColumn(IColumn column)
|
|
{
|
|
if (column == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
column.ColIndex = CurrentColIndex++;
|
|
Columns.Add(column);
|
|
}
|
|
|
|
public void AddRowColumn(IColumn column)
|
|
{
|
|
if (column == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (++CurrentColIndex >= Columns.Count)
|
|
{
|
|
CurrentColIndex = 0;
|
|
}
|
|
|
|
column.ColIndex = CurrentColIndex;
|
|
}
|
|
}
|
|
}
|