在编辑模式下更改datagridview单元格值

时间:2015-08-16 09:53:06

标签: c# winforms datagridview

我在datagridview中有一个单元格,我以自定义格式显示时间。我需要在使用进入编辑模式时(例如通过双击),我需要将字符串值更改为整数,表示以分钟为单位的时间。

当我尝试更改“CellEnter”事件中的单元格值时,它似乎没有响应。实际上它似乎并没有在任何事件中改变单元格值。

请不要介意将时间转换为字符串的细节,反之亦然,我的问题是如何在用户双击时成功更改单元格的内容。

编辑(代码+解决方案): 我所做的是使用另一列来存储实际值(没有格式化)。在该列的单元格格式上,我将值传递给自定义格式函数以填充我的列。

private void gridview_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e)
{
    if (e.ColumnIndex == 3 && e.Value != null && e.Value.ToString() != "")
    {
        //fill the unbound textbox column (5) from raw value column (3)
        string newValue = TimeAttendanceHelper.FormatHourlyDuration(e.Value);
        gridview.Rows[e.RowIndex].Cells[5].Value = newValue;
    }
}

然后感谢TaW,在CellBeginEdit上我显示了编辑它的原始值:

private void gridview_CellBeginEdit(object sender, DataGridViewCellCancelEventArgs e)
{
    if (e.ColumnIndex == 5)
    {
        //on editing, use the value from raw data column (3)
        gridview.Rows[e.RowIndex].Cells[5].Value = gridview.Rows[e.RowIndex].Cells[3].Value;
    }
}

最后当CellEndEdit时,我重新格式化了新值:

private void gridview_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
    if (e.ColumnIndex == 4)
    {
        //update value both in columns 3 & 5
        string newValue = tIME_SHIFTDataGridView.Rows[e.RowIndex].Cells[4].Value.ToString();
        gridview.Rows[e.RowIndex].Cells[3].Value = newValue;
        gridview.Rows[e.RowIndex].Cells[4].Value = TimeAttendanceHelper.FormatHourlyDuration(newValue);
    }
}

0 个答案:

没有答案