-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsPage.xaml.cs
52 lines (48 loc) · 1.54 KB
/
SettingsPage.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
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.IO.IsolatedStorage;
using Microsoft.Phone.Tasks;
namespace LatitudeGap
{
public partial class SettingsPage : PhoneApplicationPage
{
IsolatedStorageSettings isoSettings = IsolatedStorageSettings.ApplicationSettings;
public SettingsPage()
{
InitializeComponent();
if (!isoSettings.Contains("Enablelocation"))
EnableLocation.IsChecked = true;
else EnableLocation.IsChecked = (bool?)isoSettings["Enablelocation"] ?? true;
isoSettings.Save();
}
private void EnableLocation_Checked(object sender, RoutedEventArgs e)
{
isoSettings["Enablelocation"] = true;
isoSettings.Save();
}
private void EnableLocation_Unchecked(object sender, RoutedEventArgs e)
{
isoSettings["Enablelocation"] = false;
isoSettings.Save();
}
private void TextBlock_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
new EmailComposeTask
{
Subject = "Privacy Question",
Body = "Latitude Gap",
To = "[email protected]",
}.Show();
}
}
}