Esempio n. 1
0
 private void ToggleBouncing(int index, Label labelToBounce)
 {
     if (bouncers[index] == null)
     {
         bouncers[index] = new LabelBouncer();
         bouncers[index].MyLabel = labelToBounce;
     }
     else
     {
         bouncers[index] = null;
     }
 }
Esempio n. 2
0
 public void ToggleBouncers(int index, Label labelToBounce)
 {
     if (bouncers[index] == null)
     {
         bouncers[index]         = new LabelBouncer();
         bouncers[index].MyLabel = labelToBounce;
     }
     else
     {
         bouncers[index] = null;
     }
 }
Esempio n. 3
0
 private void ToggleBouncing(int index, Label labeltoBounce)
 {
     if (bouncers[index] == null)
     {
         bouncers[index]         = new LabelBouncer();
         bouncers[index].MyLabel = labeltoBounce;
     }
     else
     {
         bouncers[index] = null;
     }
 }