/// <summary>
 /// Sets the clock style.
 /// </summary>
 /// <param name="style">The style.</param>
 public void SetClockStyle(ClockVisualStyle style = ClockVisualStyle.OfficeBlack)
 {
     if (Enum.IsDefined(typeof(ClockVisualStyle), style))
     {
         try
         {
             VisualStyle = style;
         }
         catch (Exception e)
         {
             Console.WriteLine(e);
             throw;
         }
     }
 }
 /// <summary>
 /// Sets the clock style.
 /// </summary>
 /// <param name="style">The style.</param>
 public void SetClockStyle(ClockVisualStyle style = ClockVisualStyle.OfficeBlack)
 {
     Clock.SetClockStyle(style);
 }