示例#1
0
 public void Load(Panel panel)
 {
     commentsPosition = 1;
     comments         = DataFetcher.GetCommentsAsList(forumPost.id); //this.
     foreach (Comment comment in comments)
     {
         var lComment = MakeCommentLabel(comment.content, commentsPosition);
         panel.Controls.Add(lComment);
         commentsPosition++; //this.
     }
 }