-
Notifications
You must be signed in to change notification settings - Fork 4
/
ComposePage.xaml.cs
72 lines (61 loc) · 2.04 KB
/
ComposePage.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using System.Windows.Navigation;
namespace sbbs_client_wp7
{
using Sbbs;
public partial class ComposePage : PhoneApplicationPage
{
private int reid = 0;
private LoadingViewModel viewModel = new LoadingViewModel();
public ComposePage()
{
InitializeComponent();
DataContext = viewModel;
}
protected override void OnNavigatedTo(NavigationEventArgs e)
{
base.OnNavigatedTo(e);
if (this.NavigationContext.QueryString.ContainsKey("user"))
{
string title = this.NavigationContext.QueryString["title"];
if (title.Length > 3 && title.Substring(0, 3) == "Re:")
TitleText.Text = title;
else
TitleText.Text = "Re: " + title;
UserText.Text = this.NavigationContext.QueryString["user"];
reid = int.Parse(this.NavigationContext.QueryString["reid"]);
ContentText.Focus();
}
else
{
UserText.Focus();
}
}
private void Compose_Click(object sender, EventArgs e)
{
if (viewModel.IsLoading) return;
viewModel.IsLoading = true;
App.Service.MailSend(UserText.Text, TitleText.Text, ContentText.Text, delegate(TopicViewModel mail, bool success, string error)
{
viewModel.IsLoading = false;
if (!success)
MessageBox.Show("网络错误");
else if (error != null)
MessageBox.Show(error);
else
NavigationService.GoBack();
});
}
}
}