コード例 #1
0
 public void ViewLikesExecute()
 {
     try
     {
         OtherLikesView otherLikes = new OtherLikesView(Post);
         otherLikes.ShowDialog();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }
コード例 #2
0
 public OtherLikesViewModel(OtherLikesView otherLikesView, vwPost post)
 {
     this.otherLikesView = otherLikesView;
     Post     = post;
     UserList = posts.UsersWhoLikedPost(Post);
 }