c# DataGrid 修改某个单元格数据

 我来答
ssq1314
推荐于2016-07-15 · TA获得超过965个赞
知道小有建树答主
回答量:746
采纳率:82%
帮助的人:398万
展开全部
privatevoid dataGridView1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
if (dataGridView1.CurrentCell !=null)
{
int rowIndex=dataGridView1.CurrentCell.RowIndex;
int colIndex=dataGridView1.CurrentCell.ColumnIndex;

if (colIndex != dataGridView1.ColumnCount -1)
{
dataGridView1.CurrentCell = dataGridView1.Rows[rowIndex].Cells[colIndex +1];
}
else
{
dataGridView1.Rows.Add();
dataGridView1.CurrentCell = dataGridView1.Rows[rowIndex +1].Cells[0];
}
}
}
}
COPY的,这个看代码可以,本人没试!
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
软件456
2012-07-12 · 知道合伙人公共服务行家
软件456
知道合伙人公共服务行家
采纳数:534 获赞数:1486
毕业于北京大学

向TA提问 私信TA
展开全部
dadaGridView.row[0].cell[0].value="你想要修改成的值";
这是修改第一行的第一个单元格
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
franksli
2012-07-12
知道答主
回答量:32
采纳率:0%
帮助的人:13.6万
展开全部
private void dataGridView1_CellBeginEdit(object sender, DataGridViewCellCancelEventArgs e)
{
string msg = String.Format("编辑表格 ({0}, {1})", e.ColumnIndex, e.RowIndex);
this.Text = msg;
}
private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
string msg = String.Format("完成编辑 ({0}, {1})", e.ColumnIndex, e.RowIndex);
this.Text = msg;
}

这是一种方法单元格改变时候的触发事件

try
{
string strQuery = "select * from shuju ";
SqlConnection objConn
= new SqlConnection("server=UNICOM-DELL2-PC;database=test;user id=sa;pwd=sa;");
objConn.Open();
myDataAdapter = new SqlDataAdapter(strQuery, objConn);
//myDataAdapter.MissingSchemaAction = MissingSchemaAction.AddWithKey;
SqlCommandBuilder custCB = new SqlCommandBuilder(myDataAdapter);
custDS = new DataSet();
myDataAdapter.Fill(custDS, "shuju ");

//code to modify data in dataset here
myDataAdapter.Update(custDS, "shuju ");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

这是另一个的单击事件的方法,其中数据库需要修改
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式