Browse Source

NotificationObject在prism 5.0中已经废弃,由BindableBase替代

tanghai 11 years ago
parent
commit
837c619015
1 changed files with 2 additions and 2 deletions
  1. 2 2
      CSharp/App/Editor/ShellViewModel.cs

+ 2 - 2
CSharp/App/Editor/ShellViewModel.cs

@@ -1,10 +1,10 @@
 using System.ComponentModel.Composition;
-using Microsoft.Practices.Prism.ViewModel;
+using Microsoft.Practices.Prism.Mvvm;
 
 namespace Editor
 {
 	[Export]
-	public class ShellViewModel: NotificationObject
+	public class ShellViewModel: BindableBase
 	{
 		// This is where any view model logic for the shell would go.
 	}