diff --git a/EggTimer/EggTimer/ApplicationIcon_small.png b/EggTimer/EggTimer/ApplicationIcon_small.png
index a03bfc9..e2055ed 100644
Binary files a/EggTimer/EggTimer/ApplicationIcon_small.png and b/EggTimer/EggTimer/ApplicationIcon_small.png differ
diff --git a/EggTimer/EggTimer/Background_large.png b/EggTimer/EggTimer/Background_large.png
index a151d2c..a0b9e9c 100644
Binary files a/EggTimer/EggTimer/Background_large.png and b/EggTimer/EggTimer/Background_large.png differ
diff --git a/EggTimer/EggTimer/MainPage.xaml b/EggTimer/EggTimer/MainPage.xaml
index 273608f..f1c3f13 100644
--- a/EggTimer/EggTimer/MainPage.xaml
+++ b/EggTimer/EggTimer/MainPage.xaml
@@ -31,11 +31,11 @@
-
+
-
+
diff --git a/EggTimer/EggTimer/MainPage.xaml.cs b/EggTimer/EggTimer/MainPage.xaml.cs
index 91e43f1..4e4419e 100644
--- a/EggTimer/EggTimer/MainPage.xaml.cs
+++ b/EggTimer/EggTimer/MainPage.xaml.cs
@@ -34,10 +34,10 @@ namespace EggTimer
void alarm_mp3_MediaEnded(object sender, RoutedEventArgs e)
{
- if (this.start.Content.ToString() == "stop")
+ if (this.start.Content.ToString() == "Stop")
Deployment.Current.Dispatcher.BeginInvoke(() =>
{
- this.start.Content = "start";
+ this.start.Content = "Start";
tmin_KeyUp(null, null);
tsec_KeyUp(null, null);
});
@@ -52,11 +52,11 @@ namespace EggTimer
private void start_Click(object sender, RoutedEventArgs e)
{
- if (this.start.Content.ToString() == "start")
- this.start.Content = "stop";
- else if (this.start.Content.ToString() == "stop")
- this.start.Content = "start";
- if (this.start.Content.ToString() == "stop")
+ if (this.start.Content.ToString() == "Start")
+ this.start.Content = "Stop";
+ else if (this.start.Content.ToString() == "Stop")
+ this.start.Content = "Start";
+ if (this.start.Content.ToString() == "Stop")
{
this.dest = DateTime.Now.AddMinutes(min).AddSeconds(sec);
this.thread = new Thread(this.TimeRunner);
@@ -64,7 +64,7 @@ namespace EggTimer
this.thread.Start();
while (!this.thread.IsAlive) ;
}
- if (this.start.Content.ToString() == "start")
+ if (this.start.Content.ToString() == "Start")
{
this.alarm_mp3.Stop();
this._stop = true;
diff --git a/EggTimer/EggTimer/screen1.png b/EggTimer/EggTimer/screen1.png
new file mode 100644
index 0000000..841c48a
Binary files /dev/null and b/EggTimer/EggTimer/screen1.png differ
diff --git a/EggTimer/EggTimer/screen2.png b/EggTimer/EggTimer/screen2.png
new file mode 100644
index 0000000..1237793
Binary files /dev/null and b/EggTimer/EggTimer/screen2.png differ