示例#1
0
 public CountDownTimerDisplay(CountDownClock cdc)
 {
     myHandler        = new CountDownClock.TimesUpEventHandler(HeardIt);
     cdc.TimeExpired += myHandler;
     myHandler        = new CountDownClock.TimesUpEventHandler(HeardIt1);
     cdc.TimeExpired += myHandler;
 }
示例#2
0
 public CountDownTimerDisplay(CountDownClock cdc)
 {
     myHandler = new CountDownClock.TimesUpEventHandler(TimeExpired);
     // register the event handler and start the timer
     cdc.TimeExpired += myHandler;
 }
示例#3
0
 public CountDownTimerDisplay(CountDownClock cdc)
 {
     myHandler = new CountDownClock.TimesUpEventHandler(TimeExpired);
     // register the event handler and start the timer
     cdc.TimeExpired += myHandler;
 }