I want to repeat an action when a Button is pressed during a long time, like for example the forward button of an MP3 reader. Is there an existing c# event in W
Button
You can use timer between MouseDown and MouseUp.
MouseDownEvent Timer tm1; MouseUpEvent Timer tm2;
You can easily handle them between two timers.