जवाबों:
सामान्य WPF टाइमर है DispatcherTimer
, जो एक नियंत्रण नहीं है, लेकिन कोड में उपयोग किया जाता है। यह मूल रूप से WinForms टाइमर की तरह ही काम करता है:
System.Windows.Threading.DispatcherTimer dispatcherTimer = new System.Windows.Threading.DispatcherTimer();
dispatcherTimer.Tick += dispatcherTimer_Tick;
dispatcherTimer.Interval = new TimeSpan(0,0,1);
dispatcherTimer.Start();
private void dispatcherTimer_Tick(object sender, EventArgs e)
{
// code goes here
}
var timer = new DispatcherTimer { Interval = TimeSpan.FromSeconds(1) };
डिस्पैचर के साथ आपको शामिल करना होगा
using System.Windows.Threading;
यह भी ध्यान दें कि यदि आप DispatcherTimer पर राइट-क्लिक करते हैं और रिज़ॉल्यूशन पर क्लिक करते हैं तो उसे उपयुक्त संदर्भ जोड़ना चाहिए।
आप भी उपयोग कर सकते हैं
using System.Timers;
using System.Threading;
टाइमर में विशेष कार्य हैं।
यदि आप उपयोग करते हैं StartAsync ()
या Start ()
, थ्रेड उपयोगकर्ता इंटरफ़ेस तत्व को ब्लॉक नहीं करता है
namespace UITimer
{
using thread = System.Threading;
public class Timer
{
public event Action<thread::SynchronizationContext> TaskAsyncTick;
public event Action Tick;
public event Action AsyncTick;
public int Interval { get; set; } = 1;
private bool canceled = false;
private bool canceling = false;
public async void Start()
{
while(true)
{
if (!canceled)
{
if (!canceling)
{
await Task.Delay(Interval);
Tick.Invoke();
}
}
else
{
canceled = false;
break;
}
}
}
public void Resume()
{
canceling = false;
}
public void Cancel()
{
canceling = true;
}
public async void StartAsyncTask(thread::SynchronizationContext
context)
{
while (true)
{
if (!canceled)
{
if (!canceling)
{
await Task.Delay(Interval).ConfigureAwait(false);
TaskAsyncTick.Invoke(context);
}
}
else
{
canceled = false;
break;
}
}
}
public void StartAsync()
{
thread::ThreadPool.QueueUserWorkItem((x) =>
{
while (true)
{
if (!canceled)
{
if (!canceling)
{
thread::Thread.Sleep(Interval);
Application.Current.Dispatcher.Invoke(AsyncTick);
}
}
else
{
canceled = false;
break;
}
}
});
}
public void StartAsync(thread::SynchronizationContext context)
{
thread::ThreadPool.QueueUserWorkItem((x) =>
{
while(true)
{
if (!canceled)
{
if (!canceling)
{
thread::Thread.Sleep(Interval);
context.Post((xfail) => { AsyncTick.Invoke(); }, null);
}
}
else
{
canceled = false;
break;
}
}
});
}
public void Abort()
{
canceled = true;
}
}
}