blob: 800f6e215f633a85ee4383ed0687380f060b57d8 (
plain)
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
|
using System;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Threading.Tasks;
using System.Web;
using System.Windows;
using System.Windows.Controls;
namespace MediaBrowser.UI.Pages
{
public abstract class BasePage : Page, INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged(String info)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(info));
}
}
protected Uri Uri
{
get
{
return NavigationService.CurrentSource;
}
}
protected MainWindow MainWindow
{
get
{
return App.Instance.MainWindow as MainWindow;
}
}
private NameValueCollection _queryString;
protected NameValueCollection QueryString
{
get
{
if (_queryString == null)
{
string url = Uri.ToString();
int index = url.IndexOf('?');
if (index == -1)
{
_queryString = new NameValueCollection();
}
else
{
_queryString = HttpUtility.ParseQueryString(url.Substring(index + 1));
}
}
return _queryString;
}
}
protected BasePage()
: base()
{
Loaded += BasePageLoaded;
}
async void BasePageLoaded(object sender, RoutedEventArgs e)
{
await LoadData();
DataContext = this;
}
protected abstract Task LoadData();
}
}
|