0

我有一个 DataTable 并以编程方式添加列(因此,没有固定的列数):

MyTable.Columns.Add(Value.name, typeof(double)); 

然后,我将空行添加到数据表中:

MyTable.Rows.Add(0);       

我想添加行标签,例如“价格”、“数量”、“出价”等如果我以我知道的方式添加这些,我需要知道我们将拥有的列数

在列数不是静态的情况下,如何将其编码为更健壮?谢谢

4

3 回答 3

1

没有标题行。
表格存储数据,而不是演示文稿。

你应该设置你的列Name

于 2013-09-16T16:59:06.380 回答
0

You may access columns in the Columns collection.

I will demonstrate the itteration using a list of strings:

List<string> columns = new List<string>();
columns .Add("price");
columns .Add("quantity");
columns .Add("bid");
columns .Add("price");

foreach(string columnName in columns)
{
    if(MyTable.Columns[columnName] == null)
    {
        //Col does not exist so add it:
        MyTable.Columns.Add(columnName);
    } 
}

Notice that the list has the column price twice, but it will only add it once.

public DataTable GetDataTable() 
{ 
    var dt = new DataTable(); 
    dt.Columns.Add("Id", typeof(string)); // dt.Columns.Add("Id", typeof(int));    
    dt.Columns["Id"].Caption ="my id"; 
    dt.Columns.Add("Name", typeof(string)); 
    dt.Columns.Add("Job", typeof(string)); 
    dt.Columns.Add("RowLabel", typeof(string));
    dt.Rows.Add(GetHeaders(dt)); 
    dt.Rows.Add(1, "Janeway", "Captain", "Label1"); 
    dt.Rows.Add(2, "Seven Of Nine", "nobody knows", "Label2"); 
    dt.Rows.Add(3, "Doctor", "Medical Officer", "Label3"); 
    return dt; 
}
于 2013-09-16T16:56:53.170 回答
0

Look at the DataTable members. http://msdn.microsoft.com/en-us/library/system.data.datatable.aspx

var columnCount = MyTable.Columns.Count;
于 2013-09-16T16:58:11.310 回答