MVVM下 利用反射動態建立ViewModel 實現單例

來源:互聯網
上載者:User

標籤:style   blog   io   ar   color   sp   on   div   art   

 

在MVVM一般情況下都會希望ViewModel 在整個應用程式中只有一份執行個體 傳統的做法是用單例模式去實現 :

public class ViewModelTest
{
  private ViewModelTest()
  {

  }

  private static ViewModelTest viewModelInstace;

  public static ViewModelTest GetViewModelTestInstace()
  {
    if (viewModelInstace == null)
    {
      viewModelInstace = new ViewModelTest();
    }
    return viewModelInstace;
  }
}

上面是一個傳統的單例模式 但是我們在開發的時候會有很多的ViewModel  如果每個ViewModel都去實現一個單例模式  工作量無疑是很巨大的工程。所以在這裡利用反射提供一種簡單通用的的方式去實現 代碼如下:

一:首先在App.xaml.cs下的OnStartUp 事件聲明一個全域的字典集合 用於儲存我們的ViewModel

protected override void OnStartup(StartupEventArgs e)
{
  base.OnStartup(e);

  // 建立ViewModel全域對應
  Application.Current.Properties["ViewModelMap"] = new Dictionary<string, object>();
}

二:利用反射動態建立ViewModel

 public class ViewModelFactory    {        public static object GetViewModel(Type vm_type)        {            Dictionary<string, object> dic = Application.Current.Properties["ViewModelMap"] as Dictionary<string, object>;            if (dic.ContainsKey(vm_type.FullName))            {return dic[vm_type.FullName];            }            else            {object new_vm = Activator.CreateInstance(vm_type);                dic.Add(vm_type.FullName, new_vm);                return new_vm;            }        }

三:給View指定DataContext時直接調用GetViewModel方法就可以了

 public class ViewModelTest    {        private ViewModelTest()         {                 }    }
public partial class ViewModelTestWindow : Window{    public Window()     {        this.InitializeComponent();        this.DataContext = ViewModelFactory.GetViewModel(typeof(ViewModelTest));     }}

 

MVVM下 利用反射動態建立ViewModel 實現單例

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.