我想將某些參數傳遞給c#中的事件timer_tick,但我不想讓它們成爲全局變量。這可能嗎?將參數傳遞給timer_Tick事件
我有一個顯得圓潤像這樣的東西來到了:
//Where I start the timer
lift1Up.Enabled = true;
lift1Up.Tick += (sender, args) => lift1Up_Tick(sender, args, destination, currentFloor);
lift1Up.Start();
private void lift1Up_Tick(object sender, EventArgs e, int dest, int current)
{
//my code
}
非常感謝! 盧克。
那偉大工程,非常感謝你。 盧克。 – user3277329