c#的click事件点击后没反应啊 5
privatevoid添加toolStripLabel1_Click(objectsender,EventArgse){frmAddAttendanceaddattend...
private void 添加toolStripLabel1_Click(object sender, EventArgs e)
{
frmAddAttendance addattendance = new frmAddAttendance();//创建人员考勤窗体对象
addattendance.ShowDialog();//显示模式窗体
}
-----------------------------------
private void 删除toolStripLabel3_Click(object sender, EventArgs e)
{
if (dataGridView1.SelectedCells.Count > 0)
{
string id = dataGridView1.SelectedCells[0].Value.ToString();//得到ID信息
string deletesql = "delete from tb_attend where employeeID='" + id + "'";//创建SQL字符串
if (operate.OperateData(deletesql) > 0)
{
MessageBox.Show("删除成功", "提示",//弹出消息对话框
MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
else
{
MessageBox.Show("请选择要删除的信息", "提示",//弹出消息对话框
MessageBoxButtons.OK, MessageBoxIcon.Information);
return;//退出事件
}
}
。。。。。。。。。。。。。。。
就是整个toolstrip 里点击都没反应 难道不是上面的错误???? 展开
{
frmAddAttendance addattendance = new frmAddAttendance();//创建人员考勤窗体对象
addattendance.ShowDialog();//显示模式窗体
}
-----------------------------------
private void 删除toolStripLabel3_Click(object sender, EventArgs e)
{
if (dataGridView1.SelectedCells.Count > 0)
{
string id = dataGridView1.SelectedCells[0].Value.ToString();//得到ID信息
string deletesql = "delete from tb_attend where employeeID='" + id + "'";//创建SQL字符串
if (operate.OperateData(deletesql) > 0)
{
MessageBox.Show("删除成功", "提示",//弹出消息对话框
MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
else
{
MessageBox.Show("请选择要删除的信息", "提示",//弹出消息对话框
MessageBoxButtons.OK, MessageBoxIcon.Information);
return;//退出事件
}
}
。。。。。。。。。。。。。。。
就是整个toolstrip 里点击都没反应 难道不是上面的错误???? 展开
4个回答
展开全部
先编译...
追问
整个系统编译没问题啊 就是点击添加 删除时 都没反应。。
追答
debug跟进去哇,你这太笼统了,怎么能解决。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你先去学下什么叫断点调试 你从加载页面就开始打断点就能知道整个程序的运行过程了 这样就很容易找出错误在那里
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你单步调试 看看进没进 你的程序
xaml页面加没加事件
xaml页面加没加事件
追问
整个系统编译没问题啊 就是点击添加 删除时 都没反应。。
追答
你是不是不会单步调式呀! 打个断点 按F10 看看程序怎么走的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询