从 datagridview 中清空特定的数字列

发布于 2025-01-10 05:46:33 字数 608 浏览 1 评论 0原文

问题:

如何从datagridview中清空特定列的数字? (我的意思是删除没有标题的值,而不是删除该列)。

例如从 那个,所以我不需要手动执行

我如何创建datagridview:

我创建了一个数据库表,其中有5个ID数据类型为“int”,我通过数据源、绑定源连接了datagridview。当我将值放入表中并按下按钮时:(下面的按钮代码)

table1BindingSource2.EndEdit();
table1TableAdapter2.Update(database1DataSet8.Table1;

它将把值保存到数据表中。

例如,表中的第一个 ID 是:Konduktivita1[μS_cm-1]

我认为需要的是实际删除 DataTable 中的值,但我不知道该怎么做。

Question:

How to empty specific column of numbers from datagridview? (i mean erase the values without header, not delete the column).

for example FROM THIS TO THAT, so i dont need to do it manually

How i created the datagridview:

i created a database table, with 5 ID's all of datatype "int", i connected the datagridview through DataSource, bindingsource. And when i put values in the table and press button:(button code below)

table1BindingSource2.EndEdit();
table1TableAdapter2.Update(database1DataSet8.Table1;

It will save the values into DataTable.

For example the first ID in the table is : Konduktivita1[µS_cm-1]

What i think is neccesery is to actually delete the values from DataTable but i dont how to do it.

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

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

发布评论

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

评论(1

亣腦蒛氧 2025-01-17 05:46:33

如果您提供某种代码会更容易,但让我们尝试这样的事情。

var sourceList = dataGridName.ItemsSource as List<sqlTable>; //or whatever your data is called
    foreach (var item in sourceList)
    {
        item.Konduktiva1 = null; // or 0
        
    }

It would be easier if you provided some kind of code, but let's try something like this.

var sourceList = dataGridName.ItemsSource as List<sqlTable>; //or whatever your data is called
    foreach (var item in sourceList)
    {
        item.Konduktiva1 = null; // or 0
        
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文