コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PostViewModel"/> class.
 /// </summary>
 public PostViewModel()
 {
     _postDomainContext = new PostDomainContext();
     LoadPostsCommand = new DelegateCommand(LoadPostCommandExecute);
     SubmitContextCommand = new DelegateCommand(SubmitContextCommandExecute);
     GetPredefinedPostCommand = new DelegateCommand(GetPredefinedPostCommandExecute);
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PostViewModel"/> class.
 /// </summary>
 public PostViewModel()
 {
     _postDomainContext       = new PostDomainContext();
     LoadPostsCommand         = new DelegateCommand(LoadPostCommandExecute);
     SubmitContextCommand     = new DelegateCommand(SubmitContextCommandExecute);
     GetPredefinedPostCommand = new DelegateCommand(GetPredefinedPostCommandExecute);
 }