0

バックグラウンドワーカーをラップしたいコピーファイルメソッドを作成しました。ファイルのコピー メソッドで、現在のファイル名の文字列を UI スレッドに報告する (ラベルを変更する) ことを希望します。私はそれを機能させることができないようで、クロススレッドUIエラーが発生しています。これが私のコードです。

仕事する

      //Textbox Array Values
        // 0 = computername
        // 1 = username
        // 2 = password
        string[] tbvalues = (string[])e.Argument;


        string computer = tbvalues[0];
        string user = tbvalues[1];
        string pass = tbvalues[2];

        string userfavorites = @"\\" + computer + @"\C$\Users\" + user + @"\Favorites";

        string hdrivepath = @"\\dist-win-file-3\homes\" + user + @"\Favorites";

        string SourcePath = userfavorites;
        string DestinationPath = hdrivepath;

この部分は、ユーザーを偽装するために使用されるカスタム クラスです。

        using ( new Impersonator( user, "Domain.org", pass ) )
        {
            DirectoryInfo sp = new DirectoryInfo(SourcePath);
            DirectoryInfo dp = new DirectoryInfo(DestinationPath);

            CopyAll(sp, dp, bgwBackup, e);



        }
}

方法

   public void CopyAll(DirectoryInfo source, DirectoryInfo target, BackgroundWorker worker, DoWorkEventArgs e)
    {


        // Check if the target directory exists, if not, create it.
        if (Directory.Exists(target.FullName) == false)
        {
            Directory.CreateDirectory(target.FullName);
        }

        // Copy each file into it’s new directory.
        foreach (FileInfo fi in source.GetFiles())
        {

            //THIS IS THE STRING I WOULD LIKE TO RELAY TO THE BACKGROUND WORKER REPORT PROGRESS
            string currentfile = "Copying " + target.FullName.ToString() + fi.Name.ToString();                

            fi.CopyTo(Path.Combine(target.ToString(), fi.Name), true);

            worker.ReportProgress(0, currentfile);


        }

        // Copy each subdirectory using recursion.
        foreach (DirectoryInfo diSourceSubDir in source.GetDirectories())
        {
            DirectoryInfo nextTargetSubDir =
                target.CreateSubdirectory(diSourceSubDir.Name);
            CopyAll(diSourceSubDir, nextTargetSubDir, bgwBackup, e);
        }
    }

    private void cboBackuppwdshow_CheckedChanged(object sender, EventArgs e)
    {
        if (cboBackuppwdshow.Checked == true)
        {
            txtBackuppwd.UseSystemPasswordChar = false;
        }

        else
        {
            txtBackuppwd.UseSystemPasswordChar = true;
        }
    }

進捗報告

 private void bgwBackup_ProgressChanged(object sender, ProgressChangedEventArgs e)
    {
        lblBackupStatus.Text = e.UserState.ToString();
    }

ボタンイベント

 private void btnBackupqueue_Click(object sender, EventArgs e)
    {
        // Kickoff the worker thread to begin it's DoWork function.

        string[] tbvalues = {ddlBackupselectcomp.Text, ddlBackupselectuser.Text, txtBackuppwd.Text};


        backupWorker.RunWorkerAsync(tbvalues);
        lblBackupStatus.Text = "Backup process started please wait... ";
    }

助言がありますか ?ありがとう!

4

1 に答える 1

1

問題は次のコード行から発生します。

lblBackupStatus.Text = e.UserState.ToString();

これは別のスレッドから実行されます。ラベルを更新するには、Invoke メソッドを使用する必要があります。

this.InvokeEx(c => this.lblBackupStatus.Text = e.UserState.ToString());

コントロールの呼び出しに通常使用するヘルパー メソッドを次に示します。

public static class ControlExtensions
{
    public static TResult InvokeEx<TControl, TResult>(this TControl control,
                                                Func<TControl, TResult> func) where TControl : Control
    {
        return control.InvokeRequired
                ? (TResult)control.Invoke(func, control)
                : func(control);
    }

    public static void InvokeEx<TControl>(this TControl control,
                                            Action<TControl> func) where TControl : Control
    {
        control.InvokeEx(c => { func(c); return c; });
    }

    public static void InvokeEx<TControl>(this TControl control, Action action)
        where TControl : Control
    {
        control.InvokeEx(c => action());
    }
}

PS: 直接入力したため、コンパイルできない可能性があります (ヘルパー メソッドを除く)

于 2013-05-06T22:26:46.237 に答える