2

我想MVVM pattern在 WP 应用程序中使用。我对这种模式有一些想法。但我不明白一些事情。我不知道这样做是否是好习惯。

所以,我有Model。模型是一种数据结构。字段和属性的集合。

模型

 public class Person : INotifyPropertyChanged
{
    private string name;
    private GeoCoordinate coordinate;

    public string Name
    {
        get
        {
            return name;
        }
        set
        {
            if (this.name != value)
            {
                this.name = value;
                this.RaisePropertyChanged("Name");
            }
        }
    }

    public GeoCoordinate Coordinate
    {
        get
        {
            return this.coordinate;
        }
        set
        {
            if (this.coordinate != value)
            {
                this.coordinate = value;
                this.RaisePropertyChanged("Coordinate");
            }
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;

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

ViewModel 初始化模型的字段。

视图模型

 public class PersonViewModel : INotifyPropertyChanged
    {

        public Person User
        {
            get;
            private set;
        }        

        public PersonViewModel()
        {
           this.User = new Person();
        }  

        public LoadData()
        {
           Service.GetUser((result) => 
            {
                 this.User.Name = result.Name;
                 this.User.Coordinate = result.Coordinate;
            });

        }

        public event PropertyChangedEventHandler PropertyChanged;

        private void NotifyPropertyChanged(String propertyName)
        {
            PropertyChangedEventHandler handler = PropertyChanged;
            if (null != handler)
            {
                handler(this, new PropertyChangedEventArgs(propertyName));
            }
        }
    }

看法

PersonViewModel _viewModel;
this.DataContext = _viewModel;
_viewModel.LoadData();

以下是我想澄清的时刻:

  1. ViewModel 如何在加载数据、结束加载时通知 View?
  2. 我可以将部分日期传递给 View(没有数据绑定,从技术上讲是可能的,我的意思是,这在模式下是允许的)?

例如,在ViewModel中:

   public LoadData(Action<Person, Exception> act)
            {
               Service.GetUser((result, error) => 
                {
                    if (error != null)
                    {
                        act.Invoke(null, error);
                    }
                    else
                    {
                        this.User.Name = result.Name;
                        this.User.Coordinate = result.Coordinate;
                        act.Invoke(result, null);
                    }
                });                   
            } 

视图中:

_viewModel.LoadData((result, error) =>
    { 
       if (error != null)
       {
             //error data loading
       }
       else
       {
            //successfully loading
       }
    });

这太可怕了,可能这种方法破坏了整个概念。但是,例如,我使用Jeff Wilcox静态地图。

           <jwMaps:StaticMap                                
                            Provider="Bing"                                                                   
                            Visibility="Visible">
                            <jwMaps:StaticMap.MapCenter>
                                <geo:GeoCoordinate 
                                    Latitude ="50"
                                    Longitude="50" />
                            </jwMaps:StaticMap.MapCenter>
                        </jwMaps:StaticMap>

我无法将坐标绑定到此控件。我试过了,不行。如果使用

 StaticMap.MapCenter =
       new GeoCoordinate() { Latitude = user.Latitude, Longitude = user.Longitude };

然后工作。

在代表的情况下,我可以在一个成功的分支中做到这一点......

请帮忙指教。

4

1 回答 1

2

您可以将消息从您的视图模型发送到您的视图,因为您可以使用mvvm light 的Messenger 类

而且我不会破坏MVVM 模式,因为MVVM模式是您必须在ViewModel中执行逻辑部分,但这并不意味着您不能使用您的 Page.xaml.cs 代码。您可以对可见性或任何内容做出决定您的代码背后的UI相关代码。此外,它实际上不是硬编码模式,它可以以更好和更简单的方式组织您的项目,但是如果您出于某种无法解决的原因必须在视图视图模型之间进行通信viewmodel 比你可以使用你的代码隐藏。我不是专家,但这是我的想法..希望有关此主题的一些更新..

于 2013-08-14T11:05:59.243 回答