0

我有一个带有 ObservableCollection 的 ViewModel,我有一个很长的函数,我将使用它来更新 ObservableCollection 项,但是这个函数太长了,我不想把它放在 ViewModel 中。

我想直接在 ObservableCollection 上进行更新,以便在进程运行时可以在视图上看到更改。

我想到了followig

  • 通过 ref 发送 ObservableCollection
  • 将当前项目发送到函数并返回更新的对象
  • 使我的 ObservableCollection 静态
  • 将更新功能放在我的 ViewModel 中,但这会使我的 ViewModel 又大又乱

在这个集合上会有很多不同的功能,在这种情况下,最好的编程实践是什么?

4

1 回答 1

1

如果您正在处理数据,然后将处理后的数据传递给视图,那么我认为以下选项应该是一种可能的解决方案。

下面的解决方案将处理数据,同时也会通知视图更改。

public class MyViewModel : INotifyPropertyChanged
{
    private ObservableCollection<string> _unprocessedData = new ObservableCollection<string>();
    private ObservableCollection<string> _processedData = new ObservableCollection<string>();
    private static object _lock = new object();
    public event PropertyChangedEventHandler PropertyChanged;

    public ObservableCollection<string> Collection { get { return _processedData; } }//Bind the view to this property

    public MyViewModel()
    {
        //Populate the data in _unprocessedData
        BindingOperations.EnableCollectionSynchronization(_processedData, _lock); //this will ensure the data between the View and VM is not corrupted
        ProcessData();
    }

    private async void ProcessData()
    {
        foreach (var item in _unprocessedData)
        {
            string result = await Task.Run(() => DoSomething(item));
            _processedData.Add(result);
            //NotifyPropertyChanged Collection
        }
    }

    private string DoSomething(string item)
    {
        Thread.Sleep(1000);
        return item;
    }
}

DoSomething 方法可以在 ViewModel 之外的某个其他类中定义。

我希望这有帮助。

于 2013-10-09T07:20:38.487 回答