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 using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using System.Windows.Media;
namespace File360
{
public partial class AboutPage : PhoneApplicationPage
{
public AboutPage()
{
InitializeComponent();
SolidColorBrush red = new SolidColorBrush();
SolidColorBrush green = new SolidColorBrush();
}
private void blue_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
SolidColorBrush bluec = new SolidColorBrush();
bluec.Color = Colors.Blue;
bgChanger.Fill = bluec;
}
private void red_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
}
private void green_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
}
}
}