private void BrowseLayout_AddParticipationComment(ParticipationComment comment)
 {
     if (AddParticipationComment != null)
     {
         AddParticipationComment.Invoke(comment);
     }
 }
Exemplo n.º 2
0
 private void Content_AddParticipationComment(ParticipationComment comment)
 {
     if (AddParticipationComment != null)
     {
         AddParticipationComment.Invoke(comment);
     }
 }
 private void CommentBox_AddParticipationComment(ParticipationComment comment)
 {
     if (AddParticipationComment != null)
     {
         AddParticipationComment.Invoke(comment);
         this.draw();
     }
 }