MVVM模式使用优点

项目使用MVVM架构:

每一个xaml文件对应一个viewmodel和model,在usercontrol的xaml文件的.cs文件中添加:

AName.xaml.cs中添加:this.DataContext = App.ANameViewModel;

BName.xaml.cs中添加: this.DataContext = App.BNameViewModel;

上面两句程序可以使得xaml文件中的控件绑定到ViewModel文件中。

在app.xaml.cs中添加:

public partial class App : Application

{
    private static BNameViewModel bNameViewModel = null;
    private static ANameViewModel aNameViewModel = null;

    public static BNameViewModel bNameViewModel 
        {
            get
            {
                if (bNameViewModel == null)
                {
                    bNameViewModel = new bNameViewModel ();
                }
                return bNameViewModel ;
            }
        }

    public static ANameViewModel aNameViewModel 
        {
            get
            {
                if (aNameViewModel == null)
                {
                    aNameViewModel = new aNameViewModel ();
                }
                return aNameViewModel ;
            }
        }

}

统一在app.xaml.cs中实例化,方便各个viewmodel控件间的互相通信。

猜你喜欢

转载自blog.csdn.net/zheng_guan/article/details/87883047
今日推荐