5

有了这个:

dataGridView.DataSource = theData.Select((x, index) =>
    new { CreatureRoll = x, CreatureLabel = index}).OrderByDescending(x =>    x.CreatureRoll).ToList();

它正确地生成数据,但它会生成数组中的所有行,其中包含多余的数据,这些数据将无用,即空数据。

img http://s21.postimg.org/t3f34aa43/list_Result.jpg?noCache=1379353500

想要删除不必要的数据行

4

5 回答 5

11

你也可以有这样的代码,

dataGridView1.Columns.Add("Index", "Index");
dataGridView1.Columns.Add("Value", "Dice Value");
int[] theData = new int[] { 5, 2, 1, 5, 4, 1, 3, 1};

for (int i = 0; i < theData.Length; i++)
{
     dataGridView1.Rows.Add(new object[] { i+1, theData[i] });
}

输出
在此处输入图像描述

于 2013-09-16T04:13:52.860 回答
5

看看这个.NET / C# Binding IList<string> to a DataGridView

将数据源设置为数组将不会显示任何内容。基本上,这些值需要有一个命名属性,并且需要实现 IList 才能用作数据源。像这样的事情应该做你的竞标。

var array = new int[] { 3, 4, 4, 5, 6, 7, 8 };
dataGridView1.AutoGenerateColumns = true;
dataGridView1.DataSource = array.Select(x => new { IntValue = x }).ToList(); 
于 2013-09-16T04:17:33.537 回答
3

您可以使用 LINQ 从数组生成数据源。

int[] theData = new int[] { 14, 17, 5, 11, 2 };
dataGridView1.DataSource = theData.Where(x => x>0).Select((x, index) =>
    new { RecNo = index + 1, ColumnName = x }).OrderByDescending(x => x.ColumnName).ToList();

在此处输入图像描述

于 2013-09-16T04:19:04.510 回答
2

尝试这个:

int[] ints = new int[] { 1, 2, 3, 4, 5 };
gvMain.DataSource = ints;
gvMain.DataBind();

gvMain是一个 GridView,您可以添加用户生成的数组而不是ints.

于 2013-09-16T03:59:43.480 回答
0

如何为以下情况分配集合:

foreach (DataRow dr in dropDT.Rows)
{
     values.Add(dr[0].ToString());
}

dataGridView1.Rows[e.RowIndex].Cells[4].Value = values;
dataGridView1.Rows[e.RowIndex].Cells[4].Value = values;
于 2016-04-18T12:13:55.050 回答