¿Cómo creo un temporizador en WPF?

Soy un novato en timer en wpf y necesito un código que cada 5 minutos hay un cuadro de mensaje emergente. .puede ayudarme alguien por el simple código de temporizador.

Eso es lo que intenté hasta ahora:

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(); 
} 

Respuestas a la pregunta(2)

Su respuesta a la pregunta