public void ShowPostMenu(Data.ThreadPostSource post)
        {
            if (this.Menu != null)
            {
                this.Menu.IsOpen = false;
            }

            foreach (var item in PostMenu.Items)
            {
                (item as RadContextMenuItem).CommandParameter = post;
            }

            this.Menu        = PostMenu;
            this.Menu.IsOpen = true;
        }
 public void ScrollToPost(Data.ThreadPostSource post)
 {
     this.PageManager.ScrollToPost(post);
 }