예제 #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;
     }
 }
예제 #2
0
 private void ToggleBouncing(int index, Label labelToBounce)
 {
     if (bouncers[index] == null)
     {
         bouncers[index]         = new LabelBouncer();
         bouncers[index].MyLabel = labelToBounce;
     }
     else
     {
         bouncers[index] = null;
     }
 }