C#for循环以显示所有记录

本文关键字:记录 显示 循环 C#for | 更新日期: 2023-09-27 18:25:31

我在wpf c#中这样做,我试图从数据库中填充一些记录。共有21条记录。

以下是我的代码的样子:

private void PopulateQuestion(int activityID, int taskID)
{
    IList<ModelSQL.question> lstQuestion = qn.GetRecords(taskID, activityID);
    for( int i= 0 ; i<=lstQuestion.Count()-1; i++)
    {
        TextBlock tb = new TextBlock();
        tb.FontSize = 19;
        tb.FontWeight = FontWeights.Bold;
        tb.Text = lstQuestion[i].QuestionContent;
        tb.TextWrapping = TextWrapping.WrapWithOverflow;
        wrapPanel1.Children.Add(tb);
        TextBox tbox = new TextBox();
        if (lstQuestion[i].Answer.Trim().Length > 0)
        {
            tbox.FontSize = 19;
            tbox.Width = 100;
            tbox.Height = 40;
            tbox.PreviewDrop += new DragEventHandler(tbox_PreviewDrop);
            tbox.Focusable = false; // Disallow user to input anything into it.
            wrapPanel1.Children.Add(tbox);
        }
        answers.Add(lstQuestion[i].Answer);
        if (lstQuestion[i].QuestionNo != lstQuestion[i + 1].QuestionNo)
        {
            StackPanel sp = new StackPanel();
            sp.Width = 1010;
          //  wrapPanel1.Children.Add(sp);
            Label spacing = new Label();
            spacing.Width = 1038;
            spacing.Content = "";
            wrapPanel1.Children.Add(spacing);
        }
    } // end of for each loop.
}

我不知道什么是相关的,什么不是,所以我只发布for循环所在的部分。lstQuestion.Count()有21个计数,这是来自数据库的21条记录,但我得到了这个错误:

{"索引超出范围。必须是非负数并且小于大小集合的。''''r''n参数名称:index"}

所以,我想这与for循环有关,其中I<lstQuestion.Count().

我试着把I<lstQuestion.Count()-2

它可以工作,但不显示最后2条记录,而是显示19条记录,而不是21条。

如何更改for循环,使其显示所有21条记录?

我不能使用foreach循环,因为我需要在当前循环中找到下一个循环值。

C#for循环以显示所有记录

它在上抛出异常

if (lstQuestion[i].QuestionNo != lstQuestion[i + 1].QuestionNo)

当你达到你的上一个(第21个)记录时,它试图与不存在的第22个进行比较。

您需要决定在循环的最后一次迭代中应该发生什么。至少,类似于:

if (i + 1 < lstQuestion.Count())
{
    if (lstQuestion[i].QuestionNo != lstQuestion[i + 1].QuestionNo)
    ...