I am new to C# and WPF. I want to do the following :
Display few labels one after the other after exactly 5 seconds,
After finishing the above I have to move a shape on the canvas for about ten times with time gap of 5 seconds between each move,
Do the above but with time gap of just 2 seconds.
Here is the code :
DispatcherTimer timer2 = new DispatcherTimer();
float timerTime = 10;
Label timerlabel = new Label();
private void Window_Loaded(object sender, RoutedEventArgs e)
{
lbl.Content = "test";
startDisplay("hello!!");
startDisplay("bye");
Shapemove(1);
}
private void startDisplay(string st)
{
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = TimeSpan.FromSeconds(5);
timer.Start();
timer.Tick += (s, e) =>
{
lbl.Content = st;
};
}
private void Shapemove(int i)
{
timer2.Interval = new TimeSpan(0, 0, 2);
timer2.Tick += new EventHandler(timer2_Tick);
timer2.Start();
}
void timer2_Tick(object sender, EventArgs e)
{
Random rand = new Random();
if (timerTime > 0)
{
canvas1.Children.Remove(timerlabel);
timerTime--;
canvas1.Children.Add(timerlabel);
timerlabel.FontSize = 20;
timerlabel.Content = timerTime + "s";
Canvas.SetLeft(rectangle1, rand.Next(640));
Canvas.SetTop(rectangle1, rand.Next(480));
}
else
{
timer2.Stop();
}
}
But problem with above is :
Both timer and timer2 set off at same time.
The labels are not displayed one after other - test appears and 5 seconds later bye appears, hello never appears!!
Is there a way to reset the timer and call them as function repeatedly like for Shapemove or startDisplay function mentioned above?
Kindly help me solve the above issues.