public override void Draw(Label lbDate, Graphics graphTime)
 {
     if (this.watch != null)
     {
         watch.Draw(lbDate, graphTime);
     }
 }
 public override void Draw(Size size, Graphics graphTime)
 {
     if (this.watch != null)
     {
         watch.Draw(size, graphTime);
     }
 }