private void _copier_FileCopyingStartedEvent(object sender, FileCopyingStartedEventArgs e)
        {
            lblResult.Text = e.Message;

            //To refresh label's text on the UI
            RefreshUI();
        }
Beispiel #2
0
 private void _copier_FileCopyingStartedEvent(object sender, FileCopyingStartedEventArgs e)
 {
     lblResult.Text = e.Message;
     Application.DoEvents();
 }