void wssc_DeleteWelfareStandardCompleted(object sender, DeleteWelfareStandardCompletedEventArgs e)
 {
     try
     {
         if (e.Error != null)
         {
             Utility.ShowCustomMessage(MessageTypes.Error, Utility.GetResourceStr("ERROR"), e.Error.Message);
             return;
         }
         else
         {
             if (!e.Result)
             {
                 Utility.ShowCustomMessage(MessageTypes.Error, Utility.GetResourceStr("ERROR"), Utility.GetResourceStr("DALETEFAILED"));
                 return;
             }
             LoadData();
         }
     }
     catch (Exception ex)
     {
         Utility.ShowCustomMessage(MessageTypes.Error, Utility.GetResourceStr("ERROR"), ex.ToString());
     }
     loadbar.Stop();//读取完数据后,停止动画,隐藏
 }
 void wssc_DeleteWelfareStandardCompleted(object sender, DeleteWelfareStandardCompletedEventArgs e)
 {
     try
     {
         if (e.Error != null)
         {
             Utility.ShowCustomMessage(MessageTypes.Error, Utility.GetResourceStr("ERROR"), e.Error.Message);
             return;
         }
         else
         {
             if (!e.Result)
             {
                 Utility.ShowCustomMessage(MessageTypes.Error, Utility.GetResourceStr("ERROR"), Utility.GetResourceStr("DALETEFAILED"));
                 return;
             }
             LoadData();
         }
     }
     catch (Exception ex)
     {
         Utility.ShowCustomMessage(MessageTypes.Error, Utility.GetResourceStr("ERROR"), ex.ToString());
     }
     loadbar.Stop();//读取完数据后,停止动画,隐藏
 }