参数 OutOfRangeException C# DataGridView

发布于 2024-11-30 16:49:16 字数 540 浏览 0 评论 0原文

我的 datagridview 有一个参数超出范围异常。

我试着填满它。 当 i = 1 时停止;

我不知道我的错误在哪里,但它不是数组 donnee[,]

这是我的代码

 for(int i = 0; i < donnee.Length/4; i++){
                    dataGridView1.Rows[i].Cells[0].Value = donnee[i,0];
                    dataGridView1.Rows[i].Cells[1].Value = donnee[i,1];
                    dataGridView1.Rows[i].Cells[2].Value = donnee[i,2];
                    dataGridView1.Rows[i].Cells[3].Value = donnee[i,3];
                }//REMPLIR DATAGRIDVIEW

谢谢

i have an argument outofrangeexception for my datagridview.

i try to fill it.
It stops when i = 1;

I dont know where is my mistake but its not the array donnee[,]

here's my code

 for(int i = 0; i < donnee.Length/4; i++){
                    dataGridView1.Rows[i].Cells[0].Value = donnee[i,0];
                    dataGridView1.Rows[i].Cells[1].Value = donnee[i,1];
                    dataGridView1.Rows[i].Cells[2].Value = donnee[i,2];
                    dataGridView1.Rows[i].Cells[3].Value = donnee[i,3];
                }//REMPLIR DATAGRIDVIEW

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

︶ ̄淡然 2024-12-07 16:49:16

如果要填充它,则需要随时添加行。我期望您当前正在填充默认的“新数据”行(为零),但您实际上应该每次都分配自己的行,只需通过 .Rows.Add().您可以按行执行此操作,也可以在循环之前通过 dataGridView1.Rows.Add(donnee.Length/4); 执行此操作。

If you are filling it, you need to add rows as you go. I expect that you are currently filling the default "new data" row (as zero), but you should really be allocating your own each time, simply via .Rows.Add(). You could do this per-row, or via dataGridView1.Rows.Add(donnee.Length/4); before the loop.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文