0

理论上我将如何做到这一点。

简短:使用自定义集合像数据表一样存储数据,具有可变数量的字段和列......只要行是一致的。

长风:

2 或 3 类:字段、行,可选:表

通常我会做类似的事情,List<Person> myList = new List<Person>; 然后该列表可以绑定到 datagridview 并且列将基于 Person 类的属性。

要查看的代码:

List<row> table = new List<row>;
List<field> row0 = new List<field>;
row0.Add(new field(col1,"value1"));
row0.Add(new field(col2,"value2"));
row0.add(new field(col3,"value3"));
table.Add(row0);


dataGridView1.DataSource = table;

理论输出:

|    |col 1 | col 2| col 3|
___________________________
|row0|value1|value2|value3|



public class cField
{
    public string Name { get; set; }
    public string Content { get; set; }
    public cField()
    {
    }

    public cField(string name, string content)
    {
        Name = name;
        Content = content;
    }
}

public class cRow:BindingList<cField>
{
    public cRow()
    {
    }
}
public class tables:BindingList<cRow>
{

    public tables()
    {
        fillTestData();
    }

    private void fillTestData()
    {
        for (Int32 i = 0; i < 10; i++)
        {
            cRow tRow = new cRow();

                for (Int32 x=0; x < 3; x++)
                {
                    cField f1 = new cField("ColumnName" + x.ToString(), "content" + x.ToString());
                    tRow.Add(f1);
                }
                base.Items.Add(tRow);
        }                        
    }
}

//example class which shows the output of what I'd like.
public class eField
{
    public string ColumnName0 { get; set; }
    public string ColumnName1 { get; set; }
    public string ColumnName2 { get; set; }

    public eField(string colName0, string colName1, string colName2)
    {
        ColumnName0 = colName0;
        ColumnName1 = colName1;
        ColumnName2 = colName2;
    }
}

public class eTable : BindingList<eField>
{
    public eTable()
    {
        base.Add (new eField ("content","content", "content"));
        base.Add(new eField("content", "content", "content"));
        base.Add(new eField("content", "content", "content"));
    }
}

现在这是表单的代码。

public partial class Form1 : Form
{

    tables t;

    public Form1()
    {
        InitializeComponent();


    }

    private void Form1_Load(object sender, EventArgs e)
    {
        t = new tables ();

        dataGridView1.DataSource = t;

        dataGridView2.DataSource = t[0];

        eTable table3 = new eTable ();

        dataGridView3.DataSource = table3;

    }
}

如果您将该代码放入项目中...您将看到第一个绑定...将一些内置内容从绑定列表中拉入grid1。当我希望它们水平时,Grid2 会垂直列出我的字段。

网格 3 准确地显示了我希望我的输出如何......但是我无法使用要模仿数据表的集合结构来实现它......(在代码中提供)

免责声明:我缺少研究此问题所需的关键字。我没有找到太多。我发现的最接近的东西与 linq 和 pivots 有关。但他们的输出似乎都不像我描述的那样。

我到处都使用自定义集合,所以我想保持我的代码非常相似,而不是使用数据表。这是我第一次需要我的收藏品以这种方式表现。

4

1 回答 1

0

从数据库加载数据后,听起来您正在寻找要在内存中使用的对象集合。可以对内置的 System.Data 对象进行计算等,但是比较繁琐,数据量大时效果不佳。

我们大量使用 System.Data 对象来呈现数据。我们稍后会尝试在数据库中进行计算并将结果呈现为 DataSet,因此客户端不必进行任何数据操作。

我们的一些模块需要更复杂的数据处理。在一个案例中,我们使用了一组对象,这些对象代表了要动态处理的大量数据。列是固定的,因此它们很容易作为每个对象的属性来实现。当应用程序呈现这些数据时,它会生成一个小的摘要数据集以显示在网格中。

我们有另一个模块,其中有可以有值的字段,或者它们也可以基于其他字段进行计算。对于这个模型,我们选择使用依赖于其他对象的对象,这些对象构成了一种计算网络。更改一个值,ValueChanged 事件会通知任何需要计算它们的依赖字段,这会更改这些值等。(这是一个粗略的简化。)

如果我必须呈现可变数量的列,我会认真考虑坚持使用 System.Data.DataSet。如果这真的不适合您,您可能会考虑将列名映射到该列的行值集合的哈希表。我相信这就是 System.Data.DataTable 的实现方式;它按列而不是按行存储值。然后行对象将知道它的行索引以及如何从列集合中获取值。

于 2013-01-15T22:55:38.013 回答