Blink() public méthode

Causes the graphic to "blink" to show as selected
public Blink ( ) : void
Résultat void
 public void BlinkTest1()
 {
     ITrain train = null; // TODO: Initialize to an appropriate value
     TrainGraphic target = new TrainGraphic(train); // TODO: Initialize to an appropriate value
     target.Blink();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 /// <summary>
 /// Event handler for the blink event
 /// </summary>
 /// <param name="sender">Sender of the event</param>
 /// <param name="e">Event Arguments</param>
 private void OnBlinkTimerTick(object sender, EventArgs e)
 {
     if (m_selectedTrackBlock != null)
     {
         m_selectedTrackBlock.Blink();
     }
     if (m_selectedTrain != null)
     {
         m_selectedTrain.Blink();
     }
 }