主题:鼠标的相同按键实现开始,结束...如何实现??
比如..
private void pictureBox1_Click(object sender, System.EventArgs e)
{
_thread.Start();
}
鼠标单击...线程开始
我如果还想用鼠标单击来写结束线程 该怎么写...
鼠标点一下 开始..再点一下..结束..
private void pictureBox1_Click(object sender, System.EventArgs e)
{
_thread.Start();
}
鼠标单击...线程开始
我如果还想用鼠标单击来写结束线程 该怎么写...
鼠标点一下 开始..再点一下..结束..