C# datagridview CellLeave
如果不是空,则判断是否为数字型,再判断是否其对应存货编码是否写了*/if(e.ColumnIndex==3){stringaa;aa=dataGridView2.Curr...
如果不是空,则判断是否为数字型,再判断是否其对应存货编码是否写了
*/
if (e.ColumnIndex == 3)
{
string aa;
aa = dataGridView2.CurrentCell.EditedFormattedValue.ToString();
dataGridView2.CurrentCell.Value = aa;
// try
// {
if (dataGridView2.CurrentCell.Value != null)
{
try
{
decimal i = decimal.Parse(dataGridView2.CurrentCell.Value.ToString());
}
catch
{
MessageBox.Show("分子必须是数字");
dataGridView2.CurrentCell.Value = null;
return;
}
//判断存货编码是否已输入
try
{
string a;
a = dataGridView2[1, e.RowIndex].Value.ToString();
if (a == "")
{
dataGridView2.CurrentCell.Value = null;//此处EditedFormattedValue仍然未被清空,此函数运行完后就又赋值了,怎么处理??????????????????????????????????????
// MessageBox.Show("请先输入存货编码");
return;
}
else
{
//如果存货编码不为空则调用存货信息,以获取换算率
class3 cls3 = new class3();
cls3.cunhuobianma1(a);
if (Convert.ToDecimal(class3.rate) <= 0)
{
dataGridView2[4, e.RowIndex].Value = 0;
}
else
{
dataGridView2[4, e.RowIndex].Value = Convert.ToDecimal(class3.rate) * Convert.ToDecimal(dataGridView2.CurrentCell.Value);
}
}
}
catch
{
// dataGridView2.CurrentCell.InitializeEditingControl(e.RowIndex, 0, "");
dataGridView2.CurrentCell.Value = null;
// MessageBox.Show("请先输入存货编码");
return;
}
}
备注:如果用valuechanged事件,由于此值修改后程式里会根据换算率赋另外一个值给其他CELL,而又触发了valuechanged事件.
而用现在的方法,则有文中?????处的烦恼,请大家帮忙想想办法,如何处理?
请问BIZEE.譬如我现在winform里改的cell1;然后触发CellEndEdit{在此事件中我修改cell2的值(此时会触发CellEndEdit事件吗?(注: valuechanged 一直这样不断的触发,晕死了))不知道此事件效果如何} 展开
*/
if (e.ColumnIndex == 3)
{
string aa;
aa = dataGridView2.CurrentCell.EditedFormattedValue.ToString();
dataGridView2.CurrentCell.Value = aa;
// try
// {
if (dataGridView2.CurrentCell.Value != null)
{
try
{
decimal i = decimal.Parse(dataGridView2.CurrentCell.Value.ToString());
}
catch
{
MessageBox.Show("分子必须是数字");
dataGridView2.CurrentCell.Value = null;
return;
}
//判断存货编码是否已输入
try
{
string a;
a = dataGridView2[1, e.RowIndex].Value.ToString();
if (a == "")
{
dataGridView2.CurrentCell.Value = null;//此处EditedFormattedValue仍然未被清空,此函数运行完后就又赋值了,怎么处理??????????????????????????????????????
// MessageBox.Show("请先输入存货编码");
return;
}
else
{
//如果存货编码不为空则调用存货信息,以获取换算率
class3 cls3 = new class3();
cls3.cunhuobianma1(a);
if (Convert.ToDecimal(class3.rate) <= 0)
{
dataGridView2[4, e.RowIndex].Value = 0;
}
else
{
dataGridView2[4, e.RowIndex].Value = Convert.ToDecimal(class3.rate) * Convert.ToDecimal(dataGridView2.CurrentCell.Value);
}
}
}
catch
{
// dataGridView2.CurrentCell.InitializeEditingControl(e.RowIndex, 0, "");
dataGridView2.CurrentCell.Value = null;
// MessageBox.Show("请先输入存货编码");
return;
}
}
备注:如果用valuechanged事件,由于此值修改后程式里会根据换算率赋另外一个值给其他CELL,而又触发了valuechanged事件.
而用现在的方法,则有文中?????处的烦恼,请大家帮忙想想办法,如何处理?
请问BIZEE.譬如我现在winform里改的cell1;然后触发CellEndEdit{在此事件中我修改cell2的值(此时会触发CellEndEdit事件吗?(注: valuechanged 一直这样不断的触发,晕死了))不知道此事件效果如何} 展开
2个回答
展开全部
换个事件吧. CellEndEdit
因为,dataGridView有个属性IsCurrentCellDirty(获取一个值,该值指示当前单元格是否有未提交的更改。)我们来看看为什么会出现你的那种情况.
当你编辑单元格离开的时候,IsCurrentCellDirty是TRUE,所以,你判断a = dataGridView2[1, e.RowIndex].Value.ToString(); 这个是没用的,dataGridView1.CurrentCell.Value中还是初值,你刚输入的值还没有反映上去.通过这个IsCurrentCellDirty属性,我们可知dataGridView没有把刚更新的值写入VALUE,他把值暂时记录在了EditedFormattedValue中,所以此时VALUE!=EditedFormattedValue.
但当你换个事件处理CellEndEdit,这个发生在输入后,dataGridView把你输入的值提交给了VALUE了,这时候,你可以做个试验,IsCurrentCellDirty 为FALSE,VALUE==EditedFormattedValue.
回答楼主:
CellValueChanged先执行,再执行CellEndEdit
楼主应该做做试验,把合计,验证等工作安排好.那个先那个迟,你应该比我清楚.反正,你开始用的CellLeave肯定是没法用的了,因为他根本没法真正确定你输入时的值的状态.
因为,dataGridView有个属性IsCurrentCellDirty(获取一个值,该值指示当前单元格是否有未提交的更改。)我们来看看为什么会出现你的那种情况.
当你编辑单元格离开的时候,IsCurrentCellDirty是TRUE,所以,你判断a = dataGridView2[1, e.RowIndex].Value.ToString(); 这个是没用的,dataGridView1.CurrentCell.Value中还是初值,你刚输入的值还没有反映上去.通过这个IsCurrentCellDirty属性,我们可知dataGridView没有把刚更新的值写入VALUE,他把值暂时记录在了EditedFormattedValue中,所以此时VALUE!=EditedFormattedValue.
但当你换个事件处理CellEndEdit,这个发生在输入后,dataGridView把你输入的值提交给了VALUE了,这时候,你可以做个试验,IsCurrentCellDirty 为FALSE,VALUE==EditedFormattedValue.
回答楼主:
CellValueChanged先执行,再执行CellEndEdit
楼主应该做做试验,把合计,验证等工作安排好.那个先那个迟,你应该比我清楚.反正,你开始用的CellLeave肯定是没法用的了,因为他根本没法真正确定你输入时的值的状态.
威孚半导体技术
2024-08-19 广告
2024-08-19 广告
威孚(苏州)半导体技术有限公司是一家专注生产、研发、销售晶圆传输设备整机模块(EFEM/SORTER)及核心零部件的高科技半导体公司。公司核心团队均拥有多年半导体行业从业经验,其中技术团队成员博士、硕士学历占比80%以上,依托丰富的软件底层...
点击进入详情页
本回答由威孚半导体技术提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询