WPF C# - 计时器倒计时

问题描述 投票:0回答:4

如何在用 WPF C# 编写的代码中实现以下内容?

我有一个 ElementFlow 控件,在其中实现了 SelectionChanged 事件,该事件(根据定义)在控件的项目选择发生更改时触发特定事件。

我想要它做的是:

  1. 启动计时器
  2. 如果计时器达到 2 秒,则启动一个 MessageBox,例如(“嗨,那里”)
  3. 如果选择在计时器达到 2 秒之前发生变化,则应重置计时器并重新开始。

这是为了确保只有在选择在 2 秒内没有更改的情况下才会启动冗长的操作,但我不熟悉 WPF 的 DispatcherTimer 功能,因为我更了解 Windows 窗体的普通计时器。

c# wpf timer dispatchertimer
4个回答
4
投票

试试这个:

private int timerTickCount = 0;
private bool hasSelectionChanged = false;
private DispatcherTimer timer;

在你的构造函数或相关方法中:

timer = new DispatcherTimer();
timer.Interval = new TimeSpan(0, 0, 1); // will 'tick' once every second
timer.Tick += new EventHandler(Timer_Tick);
timer.Start();

然后是事件处理程序:

private void Timer_Tick(object sender, EventArgs e)
{
    DispatcherTimer timer = (DispatcherTimer)sender;
    if (++timerTickCount == 2)
    {
        if (hasSelectionChanged) timer.Stop();
        else MessageBox.Show("Hi there");
    }
}

最后,要实现此功能,您只需在选择根据您的

hasSelectionChanged
事件发生更改时设置
SelectionChanged
变量即可。


4
投票

我已经想出了完整的代码:

DispatcherTimer _timer;

public MainWindow()
{
    _myTimer = new DispatcherTimer();
    _myTimer.Tick += MyTimerTick;
    _myTimer.Interval = new TimeSpan(0,0,0,1);
}

private void ElementFlowSelectionChanged(object sender, SelectionChangedEventArgs e)
{
    _counter = 0;
    _myTimer.Stop();
    _myTimer.Interval = new TimeSpan(0, 0, 0, 1);
    _myTimer.Start();
}

private int _counter;
public int Counter
{
    get { return _counter; }
    set
        {
            _counter = value;
            OnPropertyChanged("Counter");
        }
}
private void MyTimerTick(object sender, EventArgs e)
{
    Counter++;
    if (Counter == 2)
    {
        _myTimer.Stop();
        MessageBox.Show(“Reached the 2 second countdown”);
    }
}
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
    PropertyChangedEventHandler e = PropertyChanged;
    if (e != null)
        {
            e(this, new PropertyChangedEventArgs(propertyName));
}
}

1
投票

看这里是如何使用DispatherTimer的代码,你可以在其中添加自己的逻辑。这取决于你..

 private void ListBox_SelectionChanged_1(object sender, SelectionChangedEventArgs e)
    {
        DispatcherTimer timer = new DispatcherTimer();
        timer.Interval = TimeSpan.FromMilliseconds(2000);
        timer.Tick += timer_Tick;
        timer.Start();

    }

    void  timer_Tick(object sender, object e)
    {
       // show your message here..
    }

1
投票

使用 DispatcherTimer:

    private DispatcherTimer _timer;
    public void StartTimer()
    {
        if (_timer == null)
        {
            _timer = new DispatcherTimer();
            _timer.Tick += _timer_Tick;
        }

        _timer.Interval = TimeSpan.FromSeconds(2);
        _timer.Start();
    }

    void _timer_Tick(object sender, EventArgs e)
    {
        MessageBox.Show("Hi there");
        _timer.Stop();
    }

    void SelectionChangedEvent()
    {
        StartTimer();
    }
© www.soinside.com 2019 - 2024. All rights reserved.