using GalaSoft.MvvmLight; namespace $rootnamespace$.ViewModel { /// /// This class contains properties that the main View can data bind to. /// /// Use the mvvminpc snippet to add bindable properties to this ViewModel. /// /// /// You can also use Blend to data bind with the tool's support. /// /// /// See http://www.galasoft.ch/mvvm /// /// public class MainViewModel : ViewModelBase { /// /// Initializes a new instance of the MainViewModel class. /// public MainViewModel() { ////if (IsInDesignMode) ////{ //// // Code runs in Blend --> create design time data. ////} ////else ////{ //// // Code runs "for real" ////} } } }