示例#1
0
 public void SetPostForm(MessagePostModel model, bool showPostForm)
 {
     this.PostForm = model;
     page.IsPostFormVisible = showPostForm;
 }
示例#2
0
 public void SetPostForm(MessagePostModel model, bool navigateToReplyView)
 {
     this.viewModelWrapper.SetPostForm(model, navigateToReplyView);
     model.WhileBusy = NotifyProgress;
     model.OnFailure = NotifyFailureAndTryAgain;
     model.OnSuccess = NotifySuccessAndGoBack;
 }