Пример #1
0
 private void OnReplyPostClick(object sender, EventArgs e)
 {
     articleList.SelectedIndex = 0;
     UIArticleItem item = (UIArticleItem)articleList.SelectedItem;
     Article article = item.Article;
     postControl = new PopupPostControl();
     postControl.closeEventHander += new EventHandler(PostControlCloseHandler);
     postControl.ShowReply(article.Board_name, article);
     ApplicationBar.IsVisible = false;
 }
Пример #2
0
 private void OnNewPostClick(object sender, EventArgs e)
 {
     Article article = null;
     postControl = new PopupPostControl();
     postControl.ShowReply(currentData.Name, article);
 }