void DCService_GetDrawingGroupCompleted(object sender, DrawingClient.Service.GetDrawingGroupCompletedEventArgs e)
 {
     try
     {
         this._drawingGroup = e.Result;
         close = true;
         this.Close();
     }
     catch (Exception ex) { Error.Log(ex, true); }
 }
 public frmDrumHistory(Service.DrawingGroup group)
 {
     InitializeComponent();
     SetUIControlText();
     drawingGroup = group;
 }