7

我想Button在长时间按下 a 时重复一个动作,例如 MP3 阅读器的前进按钮。WinForm 中是否存在现有的 c# 事件?

我可以处理该MouseDown事件以启动一个计时器,该计时器将执行该操作并在MouseUp事件上停止它,但我正在寻找一种更简单的方法来解决这个问题 => 即:没有Timer(或线程/任务......)的解决方案。

4

5 回答 5

7

更新:最短的方式:

使用Anonymous MethodsObject Initializer

public void Repeater(Button btn, int interval)
{
    var timer = new Timer {Interval = interval};
    timer.Tick += (sender, e) => DoProgress();
    btn.MouseDown += (sender, e) => timer.Start();
    btn.MouseUp += (sender, e) => timer.Stop();
    btn.Disposed += (sender, e) =>
                        {
                            timer.Stop();
                            timer.Dispose();
                        };
}
于 2012-10-09T10:35:26.607 回答
1

最短的方式(并且没有任何任务/线程/计时器和秒表):)

DateTime sw;
bool buttonUp = false;
const int holdButtonDuration = 2000;
private void btnTest_MouseDown(object sender, MouseEventArgs e)
{
    buttonUp = false;
    sw = DateTime.Now;
    while (e.Button == MouseButtons.Left && e.Clicks == 1 && (buttonUp == false && (DateTime.Now - sw).TotalMilliseconds < holdButtonDuration))
        Application.DoEvents();
    if ((DateTime.Now - sw).TotalMilliseconds < holdButtonDuration)
        Test_ShortClick();
    else
        Test_LongClick();
}
private void btnTest_MouseUp(object sender, MouseEventArgs e)
{
    buttonUp = true;
}
于 2018-05-28T10:51:49.513 回答
0

您可以在 MouseDown 和 MouseUp 之间使用计时器。

MouseDownEvent

Timer tm1;

MouseUpEvent

Timer tm2;

您可以在两个计时器之间轻松处理它们。

于 2012-10-09T10:01:10.457 回答
0

您需要在按下按钮时执行一些操作,例如在 MP3 曲目中跳过几秒钟。

启动一个在 mouseUp 上被取消的计时器,它在按钮按下时定期(100 毫秒?)触发这种工作对我来说似乎是可行的。易于实现并且在 UI 上是非阻塞的。

更简单的解决方案可能会导致 UI 阻塞。

于 2012-10-09T10:05:10.433 回答
0

我可以处理 MouseDown 事件来启动一个计时器,该计时器将执行该操作并在 MouseUp 事件上停止它,但我正在寻找一种更简单的方法来解决这个问题

您可以通过以可重用的方式编写一次来使其更容易。您可以派生自己的Button具有这种行为的类。

或者编写一个可以附加到任何按钮的类来赋予它这种行为。例如,您可以执行以下操作:

class ButtonClickRepeater
{
    public event EventHandler Click;

    private Button button;
    private Timer timer;

    public ButtonClickRepeater(Button button, int interval)
    {
        if (button == null) throw new ArgumentNullException();

        this.button = button;
        button.MouseDown += new MouseEventHandler(button_MouseDown);
        button.MouseUp += new MouseEventHandler(button_MouseUp);
        button.Disposed += new EventHandler(button_Disposed);

        timer = new Timer();
        timer.Interval = interval;
        timer.Tick += new EventHandler(timer_Tick);
    }

    void button_MouseDown(object sender, MouseEventArgs e)
    {
        OnClick(EventArgs.Empty);
        timer.Start();
    }

    void button_MouseUp(object sender, MouseEventArgs e)
    {
        timer.Stop();
    }

    void button_Disposed(object sender, EventArgs e)
    {
        timer.Stop();
        timer.Dispose();
    }

    void timer_Tick(object sender, EventArgs e)
    {
        OnClick(EventArgs.Empty);
    }

    protected void OnClick(EventArgs e)
    {
        if (Click != null) Click(button, e);
    }
}

然后,您将按如下方式使用它:

private void Form1_Load(object sender, EventArgs e)
{
    ButtonClickRepeater repeater = new ButtonClickRepeater(this.myButton, 1000);
    repeater.Click += new EventHandler(repeater_Click);
}

或更简洁地说,因为您不需要保留对ButtonClickRepeater

private void Form1_Load(object sender, EventArgs e)
{
    new ButtonClickRepeater(this.myBbutton, 1000).Click += new EventHandler(repeater_Click);
}
于 2012-10-09T11:02:23.413 回答