Example #1
0
 protected void ClearComments()
 {
     currentPage = 1;
     deletedCommentsCounter.Count.Value = 0;
     moreButton.Show();
     moreButton.IsLoading = true;
     content.Clear();
     CommentDictionary.Clear();
 }
        private DrawableComment getDrawableComment(Comment comment)
        {
            if (CommentDictionary.TryGetValue(comment.Id, out var existing))
            {
                return(existing);
            }

            return(CommentDictionary[comment.Id] = new DrawableComment(comment)
            {
                ShowDeleted = { BindTarget = ShowDeleted },
                Sort = { BindTarget = Sort },
                RepliesRequested = onCommentRepliesRequested
            });
        }