public void UrlTestCallback(int index, Color backColor, Color foreColor, string label)
        {
            UpdateListViewItemStatus_Delegate UpdateListViewItemStatus_delegate =
                new UpdateListViewItemStatus_Delegate(UpdateListViewItemStatus);

            try
            {
                Invoke(UpdateListViewItemStatus_delegate, index, backColor, foreColor, label);
            }
            catch (Exception e)
            {
            }
        }
Esempio n. 2
0
 public void UrlTestCallback(int index, Color backColor, Color foreColor, string label)
 {
     UpdateListViewItemStatus_Delegate UpdateListViewItemStatus_delegate =
         new UpdateListViewItemStatus_Delegate(UpdateListViewItemStatus);
     try
     {
         Invoke(UpdateListViewItemStatus_delegate, index, backColor, foreColor, label);
     }
     catch (Exception e)
     {
     }
 }