Example #1
0
 private void _appBarMenuItemReport_Click(object sender, EventArgs e)
 {
     if (this.PostCommentsVM.WallPost == null)
     {
         return;
     }
     ReportContentHelper.ReportWallPost(this.PostCommentsVM.WallPost, "");
 }
Example #2
0
 private void _appBarMenuItemReport_Click(object sender, EventArgs e)
 {
     ReportContentHelper.ReportPhoto(this.PhotoVM.OwnerId, this.PhotoVM.Pid);
 }
Example #3
0
 private void ReportVideo()
 {
     ReportContentHelper.ReportVideo(this.VM.OwnerId, this.VM.VideoId);
 }
Example #4
0
 private void _appBarMenuItemReport_Click(object sender, EventArgs e)
 {
     ReportContentHelper.ReportVideo(this.VM.OwnerId, this.VM.VideoId);
 }
Example #5
0
 public static void ShowPickerForReportReasons(Action <ReportReason> choosenReasonCallback)
 {
     PickerUC.ShowPickerFor(ReportContentHelper.GetPredefinedReportReasons(), null, (pi => choosenReasonCallback((ReportReason)pi.ID)), null, null, "");
 }
 public void ReportApp()
 {
     ReportContentHelper.ReportApp(this._appId, this._ownerId);
 }