winform刪除dataGridView列報異常:System.IndexOutOfRangeException:“索引 7 沒有值

来源:https://www.cnblogs.com/taxue/archive/2019/11/30/11962657.html
-Advertisement-
Play Games

winform界面如下: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using S ...


winform界面如下:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.ComponentModel;
 4 using System.Data;
 5 using System.Drawing;
 6 using System.Linq;
 7 using System.Text;
 8 using System.Threading.Tasks;
 9 using System.Windows.Forms;
10 
11 namespace form1
12 {
13     public partial class Form1 : Form
14     {
15         List<Student> data = GetStudents();
16         public Form1()
17         {
18             InitializeComponent();
19 
20             this.dataGridView1.DataSource = data;
21         }
22 
23 
24         public static List<Student> GetStudents()
25         {
26 
27             return new List<Student>()
28             {
29                 new Student{ ID =1,Name="小a",Age=18},
30                 new Student{ ID =2,Name="小b",Age=18},
31                 new Student{ ID =3,Name="小c",Age=18},
32                 new Student{ ID =4,Name="小d",Age=18},
33                 new Student{ ID =5,Name="小e",Age=18},
34                 new Student{ ID =6,Name="小f",Age=18},
35                 new Student{ ID =7,Name="小g",Age=18},
36                 new Student{ ID =8,Name="小k",Age=18}
37 
38             };
39 
40         }
41         private void tsmDelete_Click(object sender, EventArgs e)
42         {
43 
44             List<Student> students = new List<Student>();
45             foreach (DataGridViewRow row in this.dataGridView1.SelectedRows)
46             {
47                 var student = row.DataBoundItem as Student;
48                 if (student != null)
49                 {
50                      data.Remove(student);
51                    // students.Add(student);
52                 }
53             }
54            
55             for (int i = 0; i < students.Count(); i++)
56             {
57                 data.Remove(students[i]);
58             }
59             this.dataGridView1.DataSource = null;
60             this.dataGridView1.DataSource = data;
61         }
62     }
63 }
View Code

問題說明:右鍵刪除行的時候異常,System.IndexOutOfRangeException:“索引 7 沒有值。

 

 

刪除的代碼如下:

 private void tsmDelete_Click(object sender, EventArgs e)
        {
          
            foreach (DataGridViewRow row in this.dataGridView1.SelectedRows)
            {
                var student = row.DataBoundItem as Student;
                if (student != null)
                {
                     data.Remove(student);    
                }
            }
            this.dataGridView1.DataSource = null;
            this.dataGridView1.DataSource = data;
        }

修改後的代碼:

        private void tsmDelete_Click(object sender, EventArgs e)
        {

            List<Student> students = new List<Student>();
            foreach (DataGridViewRow row in this.dataGridView1.SelectedRows)
            {
                var student = row.DataBoundItem as Student;
                if (student != null)
                {                   
                students.Add(student);
                }
            }

            for (int i = 0; i < students.Count(); i++)
            {
                data.Remove(students[i]);
            }
            this.dataGridView1.DataSource = null;
            this.dataGridView1.DataSource = data;
        }

異常的原因分析:

 this.dataGridView1.SelectedRows獲取選中的行,假設刪除的是第7行和第8行。

遍歷去取刪除這兩行,類型DataGridViewRow 直接引用數據源中的值。第7行刪除以後總行數就變成了7行 row.DataBoundItem去根據索引取第8行的值就超出了索引。



 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • https://blog.csdn.net/wang839305939/article/details/78713124/ ...
  • 1.當前日期格式化: time.strftime('%Y-%m-%d',time.localtime(time.time())) 例子:輸出當前日期: import timeprint(time.strftime('%Y-%m-%d',time.localtime(time.time()))) 2. ...
  • WinForm界面使用IrisSkin,可以說做到了一鍵美化,當然美化的效果仁者見仁智者見智,可以挑選自己喜歡的。 1、IrisSkin下載地址:http://www.pc6.com/softview/SoftView_70918.html#download 2、將下載的文件放到Debug下麵。 3 ...
  • 在同一個地方摔倒兩次之後,決定記錄下來這個東西。 問題 在同一個地方摔倒兩次之後,決定記錄下來這個東西。 問題 1>uafxcwd.lib(afxmem.obj) : error LNK2005: "void * __cdecl operator new(unsigned int)" (??2@YA ...
  • 第二篇隨筆 9102年11月底,工科男曹**要算一個方程f(x)=0的根,其中f(x)表達式為: 因為實數範圍內f(x)=0的根太多,所以本文只研究-2<x<2的情況.這個式子長的太醜了,曹**看著覺得不爽,導之,得一f'(x) 這個式子更醜,但是,我們有牛頓迭代法,可以構造迭代序列{xn}滿足: ...
  • [TOC] Aso.Net Core 的配置系統Configuration ​ 1.以前的配置文件格式為XML ​ 2.新版的配置文件格式支持 { json ,xml, ini, memory, command, env..... } 01.Json文件的弱類型方式讀取 1. Json文件 【Mic ...
  • 一、在C#中,使用命名空間(Namespace)可以幫助控制自定義類型的作用範圍,同時對大量的類型進行組織;使用namespace關鍵字聲明命名空間,命名空間可以嵌套使用: namespace MyNameSpace { namespace MyNestedNameSpace { class MyC ...
  • 一個簡單的api模板項目,基於.netcore 3.0,其中包含swagger文檔,jwt許可權驗證,模型驗證,ioc,appEvent,分塊上傳等等現成的功能,幫你快速開始api的構建 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...