2

我正在使用 MVVM 模式将一个简单的 WinForm 应用程序转换为 WPF。我的偏爱实现的视图模型代码如下。我被困住了showPath(string path)addFile(string file)因为他们正在使用 WPF 控件。我怎样才能克服这个问题?

class DirectorySearchModel
{
    /*-- invoke on UI thread --------------------------------*/

    void showPath(string path)
    {
        //textBlock1.Text = path;
        //return path;
    }
    /*-- invoke on UI thread --------------------------------*/

    void addFile(string file)
    {
        //listBox1.Items.Add(file);
    }
    /*-- recursive search for files matching pattern --------*/

    void Search(string path, string pattern)
    {
        /* called on asynch delegate's thread */
        if (System.Windows.Application.Current.Dispatcher.CheckAccess())
            showPath(path);
        else
            System.Windows.Application.Current.Dispatcher.Invoke(
              new Action<string>(showPath), DispatcherPriority.Background, new string[] { path }
            );
        string[] files = Directory.GetFiles(path, pattern);
        foreach (string file in files)
        {
            if (System.Windows.Application.Current.Dispatcher.CheckAccess())
                addFile(file);
            else
                System.Windows.Application.Current.Dispatcher.Invoke(new Action<string>(addFile), DispatcherPriority.Background,
                  new string[] { file }
                );
        }
        string[] dirs = System.IO.Directory.GetDirectories(path);
        foreach (string dir in dirs)
            Search(dir, pattern);
    }



}
4

1 回答 1

3

我怎样才能克服这个问题

您将创建两个属性 - 一个ObservableCollection<string>用于文件名(what is listBox1)和一个string(它也在集合上引发PropertyChanged)用于路径(what is textBlock1)。然后视图将绑定到这些属性。

这些方法只需要设置路径并添加到集合中,视图就会自动更新。

于 2013-04-16T17:28:24.233 回答