private void timer1_Tick(object sender, EventArgs e)
{
MouseEventArgs m=e as MouseEventArgs;
if (m.Button == MouseButtons.Right)
{
MessageBox.Show("dfgdf");
}
}
它不起作用 我该怎么办?
答案 0 :(得分:1)
MouseEventArgs
是来自鼠标事件的论据。 (例如MouseDown
或MouseUp
)
每个Event
都有自己的EventAgs
。因此,您无法在MouseEventArgs
事件中使用Timer.Tick
。