Je suis un débutant en timer dans wpf et j'ai besoin d'un code pour que toutes les 5 minutes il y ait une boîte de message qui apparaisse. J'ai besoin d'un code pour que toutes les 5 minutes une boîte de message apparaisse.
C'est ce que j'ai essayé jusqu'à présent :
System.Windows.Threading.DispatcherTimer dispatcherTimer = new System.Windows.Threading.DispatcherTimer();
private void test()
{
dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);
dispatcherTimer.Interval = new TimeSpan(0, 0, 1);
dispatcherTimer.Start();
}
private void dispatcherTimer_Tick(object sender, EventArgs e)
{
// code goes here
}
private void button1_Click(object sender, RoutedEventArgs e)
{
test();
}