本文介绍了如何手动输入gridview中的数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你可以帮我如何在gridview中手动输入数据吗?你准备网页了吗?

can u plz help me how to enter the data in gridview manually?while u prepare the webpage?

推荐答案

DataGridViewRow row = new DataGridViewRow();
row.CreateCells(dataGridView1); 
row.Cells[0].Value = "Cell1";
row.Cells[1].Value = "Cell2";
dataGridView1.Rows.Add(row);




这篇关于如何手动输入gridview中的数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 12:41