forked from zcbenz/sbbs-client-wp7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PostPage.xaml.cs
82 lines (69 loc) · 2.46 KB
/
PostPage.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using System.Collections.ObjectModel;
using Microsoft.Phone.Controls;
namespace sbbs_client_wp7
{
using Sbbs;
public partial class PostPage : PhoneApplicationPage
{
private string board;
private int reid = 0;
private LoadingViewModel viewModel = new LoadingViewModel();
public PostPage()
{
InitializeComponent();
DataContext = viewModel;
}
protected override void OnNavigatedTo(NavigationEventArgs e)
{
base.OnNavigatedTo(e);
if (this.NavigationContext.QueryString.ContainsKey("reid"))
{
string title = this.NavigationContext.QueryString["title"];
if (title.Length > 3 && title.Substring(0, 3) == "Re:")
TitleText.Text = title;
else
TitleText.Text = "Re: " + title;
TypeTitle.Text = "回复";
Board.Text = board = this.NavigationContext.QueryString["board"];
reid = int.Parse(this.NavigationContext.QueryString["reid"]);
ContentText.Focus();
}
else
{
TypeTitle.Text = "发帖";
Board.Text = board = this.NavigationContext.QueryString["board"];
TitleText.Focus();
}
}
private void Post_Click(object sender, EventArgs e)
{
if (viewModel.IsLoading) return;
viewModel.IsLoading = true;
App.Service.TopicPost(board, reid, TitleText.Text, ContentText.Text, delegate(TopicViewModel topic, bool success, string error)
{
viewModel.IsLoading = false;
if (!success)
MessageBox.Show("网络错误");
else if (error != null)
MessageBox.Show(error);
else
{
// 跳转到版面时标记刷新
if (reid == 0)
App.ViewModel.CurrentBoard.NeedRefresh = true;
// 跳转到话题时直接在最后添加
else
App.ViewModel.CurrentTopic.Topics.Add(topic);
NavigationService.GoBack();
}
});
}
}
}