Ich möchte die Ausführung eines Befehls verzögern, ohne einen anderen auszuführen.
Here's the programWie kann ich eine Veranstaltung verzögern?
public async void parcours_anim(Queue<int> f, noeud[] Arb_b, LabelExpression[] Lbls_A)
{
int val = 0;
while (f.ToArray().Length != 0)
{
val = f.Dequeue();
index = Recherche_index(val, Lbls_A);
//Stop here before executing this instruction for like 2seconds
Arbre[index].Fill = Brushes.Blue;
// and then continue
}
}
Bitte Code als Text hinzufügen, nicht als ein Bild – Rob
Thread.Sleep (2000) – benPearce
https://msdn.microsoft.com/en-us/library/system.threading.thread.sleep(v=vs.110).aspx –