Exemplo n.º 1
0
        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;
        }
Exemplo n.º 2
0
 public void ScrollToPost(Data.ThreadPostSource post)
 {
     this.PageManager.ScrollToPost(post);
 }