Subversion Repository Public Repository

Nextrek

Diff Revisions 751 vs 752 for /Android/SmartCharging/SmartCharging_WP/SmartCharging/ManageSitePage.xaml.cs

Diff revisions: vs.
  @@ -7,6 +7,7 @@
7 7 using Windows.Foundation;
8 8 using Windows.Foundation.Collections;
9 9 using Windows.Graphics.Display;
10 + using Windows.UI.Core;
10 11 using Windows.UI.ViewManagement;
11 12 using Windows.UI.Xaml;
12 13 using Windows.UI.Xaml.Controls;
  @@ -107,5 +108,15 @@
107 108 }
108 109
109 110 #endregion
111 +
112 + private void ChangeInfoButton_Tapped(object sender, TappedRoutedEventArgs e)
113 + {
114 + var aw = Dispatcher.RunAsync(CoreDispatcherPriority.Normal,
115 + () =>
116 + {
117 + this.Frame.Navigate(typeof(ModifySitePage));
118 +
119 + });
120 + }
110 121 }
111 122 }