Exemple #1
0
 private void buttonPostComment_Click(object sender, EventArgs e)
 {
     if (textBoxNewComment.Text != "")
     {
         thisVideo.addComment(this.textBoxNewComment.Text, thisUser.userId);
         textBoxNewComment.Text = "";
         buildComments();
     }
 }