首页上一页 1 下一页尾页 1 条记录 1/1页
关于“人事管理系统”中事件的触发过程
发表在C#图书答疑
2012-04-26
是否精华
是
否
版块置顶:
是
否
我用单步调试:
private void F_ManFile_Load(object sender, EventArgs e)
{
//用dataGridView1控件显示职工的名称
MyDS_Grid = MyDataClass.getDataSet(DataClass.MyMeans.AllSql, "tb_Stuffbusic");
dataGridView1.DataSource = MyDS_Grid.Tables[0];
发现执行到上面最后一行的时候dataGridView1_CellEnter事件就给触发了,为什么呢?
谢谢!
private void F_ManFile_Load(object sender, EventArgs e)
{
//用dataGridView1控件显示职工的名称
MyDS_Grid = MyDataClass.getDataSet(DataClass.MyMeans.AllSql, "tb_Stuffbusic");
dataGridView1.DataSource = MyDS_Grid.Tables[0];
发现执行到上面最后一行的时候dataGridView1_CellEnter事件就给触发了,为什么呢?
谢谢!