2

我最近开始尝试掌握似乎还没有工作的 MVVM。

我有我的模型、视图和视图模型。我有一个使用该INotifyPropertyChanged界面的基本视图模型。

我想收集ViewModels我的数据,以便可以在所有视图中使用我的数据。但我似乎无法让这一切继续下去。

无论如何,在阅读了大量不同的东西之后,我什至不知道应该是什么。

我希望有人能为我回答的最大问题是我在哪里倾倒我的收藏ViewModels?我需要在一个中更改一个ViewModelView在另一个中再次显示它。

public class BaseViewModel : INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;

    public  BaseViewModel()
    {

    }

    protected virtual void RaisePropertyChanged(string propertyName)
    {
        PropertyChangedEventHandler handler = this.PropertyChanged;
        if (handler != null)
        {
            handler(this, new PropertyChangedEventArgs(propertyName));
        }
    }
}

那是ViewModel在一个视图上填写的,然后需要在另一个视图上显示。但我不知道如何在ObservableCollection<T>课堂上完成这项工作。

public class WorkViewModel : BaseViewModel
{
    private string reference;
    private string address;
    private string scope;
    private string cost;
    private double amount;
    private double gst;
    private double total;

    public string Reference
    {
        get { return reference; }
        set
        {
            if (reference != value)
            { reference = value; RaisePropertyChanged("Reference"); }
        }
    }

    public string Address
    {
        get { return address; }
        set
        {
            if (address != value)
            { address = value; RaisePropertyChanged("Address"); }
        }
    }

    public string Scope
    {
        get { return scope; }
        set
        {
            if (scope != value)
            { scope = value; RaisePropertyChanged("Scope"); }
        }
    }

    public string Cost
    {
        get { return cost; }
        set
        {
            if (cost != value)
            { cost = value; RaisePropertyChanged("Cost"); }
        }
    }

    public double Amount
    {
        get { return amount; }
        set
        {
            if (amount != value)
            {
                amount = value;
                GST = Math.Round(amount * 0.10,2);
                RaisePropertyChanged("Amount");
            }
        }
    }

    public double GST
    {
        get { return gst; }
        set
        {
            if (gst != value)
            {
                gst = value;
                Total = Math.Round(Amount + GST,2);
                RaisePropertyChanged("GST");
            }
        }
    }

    public double Total
    {
        get { return total; }
        set
        {
            if (total != value)
            {
                total = value;
                RaisePropertyChanged("Total");
            }
        }
    }

}

我试过这个:

"Create a BaseViewModel and a Collection ObservableCollection<BaseViewModel> _viewModels;

Create a Property ObservableCollection<BaseViewModel> ViewModels around _viewModels

Define your View Models like this and add to Collection

MainViewModel : BaseViewModel

Tab1ViewModel : BaseViewModel

Tab2ViewModel : BaseViewModel

现在你可以使用这个:

Tab1ViewModel vm = (ViewModels.Where(vm => vm is Tab1ViewModel).Count() == 0) ? new  Tab1ViewModel(): (ViewModels.Where(vm => vm is Tab1ViewModel).FirstOrDefault() as Tab1ViewModel;"

好像我需要做一个单身人士?

4

1 回答 1

2

您不需要在设计中的任何位置存储视图模型的集合。在我看来,您的视图模型应该使用来自支持源(很可能是您的模型)的数据。在该设计中,您应该能够实例化 2 个相同类型的视图模型,并且它们都将看到相同的数据,因为它们使用相同的基础数据。每个视图我总是有 1 个视图模型实例,并且它不与任何其他人共享。

于 2013-01-07T10:08:26.387 回答