如何:通过 Columns 属性操作表列

更新:2007 年 11 月

此示例演示可通过 Columns 属性对表的列执行的部分较常见操作。

示例

下面的示例创建一个新表,然后使用 Add 方法将列添加到表的 Columns 集合。

Table tbl = new Table();
int columnsToAdd = 4;
for (int x = 0; x < columnsToAdd; x++)
    tbl.Columns.Add(new TableColumn());

下面的示例插入一个新的 TableColumn。 将在索引位置 0 插入新列,令其成为表中的第一个新列。

说明:

TableColumnCollection 集合使用从零开始的标准索引。

tbl.Columns.Insert(0, new TableColumn());

下面的示例访问 TableColumnCollection 集合中列(特指按索引排列的特定列)的某些任意属性。

tbl.Columns[0].Width = new GridLength(20);
tbl.Columns[1].Background = Brushes.AliceBlue;
tbl.Columns[2].Width = new GridLength(20);
tbl.Columns[3].Background = Brushes.AliceBlue;

下面的示例获取表当前承载的列的数目。

int columns = tbl.Columns.Count;

下面的示例将按引用移除特定列。

tbl.Columns.Remove(tbl.Columns[3]);

下面的示例将按索引移除特定列。

tbl.Columns.RemoveAt(2);

下面的示例会从表的列集合中移除所有列。

tbl.Columns.Clear();

请参见

任务

如何:使用 XAML 定义表

如何:以编程方式生成表

如何:通过 RowGroups 属性操作表的行组

如何:通过 Blocks 属性操作 FlowDocument

如何:通过 RowGroups 属性操作表的行组

概念

表概述