c# 如何删除datagrieview中指定那行数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# 如何删除datagrieview中指定那行数据相关的知识,希望对你有一定的参考价值。
不按主键查询的话,查出来的数据是很多条~
那么多条数据,删除指定的一条~思路是怎样?
id是数据库中的主键,然后在数据库中用SQL删除。在Datagridview表中清除是
this.dataGridView1.Rows.Remove(this.dataGridView1.CurrentRow);这样就可以了。 参考技术A 删除选中一条的方法:
dataGridView1.Rows[dataGridView1.SelectedCells[0].RowIndex].Cells[0].Value.ToString().Trim(); 参考技术B 循环获取行主键,再进行删除。
删除log文件末尾中指定的行数
/// <summary>
/// 删除log文件末尾中指定的行数
/// </summary>
/// <param name="file">文件路径</param>
/// <param name="line">删除的行数</param>
public static void deleteLogToLine(string file,int line)
{
System.IO.StreamReader st= new StreamReader(file, System.Text.Encoding.Default);
int lineCount = 0;//总行数
List<string> data = new List<string>();
while (true)
{
string str = st.ReadLine();
if (str == null || str.Length == 0) break;
data.Add(str);
lineCount++;
}
st.Close();
st.Dispose();
StreamWriter sw = new StreamWriter(file, false);
for (int i = 0; i < data.Count - line; i++)
{
sw.WriteLineAsync(data[i]);
}
sw.Flush();
sw.Close();
}
以上是关于c# 如何删除datagrieview中指定那行数据的主要内容,如果未能解决你的问题,请参考以下文章
QT如何获取QTableWidget表格中的高亮位置的行数?