file360

Log | Files | Refs

AboutPage.xaml.cs (1010B)


      1 using System;
      2 using System.Collections.Generic;
      3 using System.Linq;
      4 using System.Net;
      5 using System.Windows;
      6 using System.Windows.Controls;
      7 using System.Windows.Navigation;
      8 using Microsoft.Phone.Controls;
      9 using Microsoft.Phone.Shell;
     10 using System.Windows.Media;
     11 
     12 namespace File360
     13 {
     14     public partial class AboutPage : PhoneApplicationPage
     15     {
     16         public AboutPage()
     17         {
     18             InitializeComponent();
     19             SolidColorBrush red = new SolidColorBrush();
     20             SolidColorBrush green = new SolidColorBrush();
     21         }
     22 
     23         private void blue_Tap(object sender, System.Windows.Input.GestureEventArgs e)
     24         {
     25             SolidColorBrush bluec = new SolidColorBrush();
     26             bluec.Color = Colors.Blue;
     27             bgChanger.Fill = bluec;
     28         }
     29 
     30         private void red_Tap(object sender, System.Windows.Input.GestureEventArgs e)
     31         {
     32 
     33         }
     34 
     35         private void green_Tap(object sender, System.Windows.Input.GestureEventArgs e)
     36         {
     37 
     38         }
     39     }
     40 }