-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotifyUpdate.xaml.cs
42 lines (37 loc) · 1.04 KB
/
NotifyUpdate.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
using CopyPlusPlus.Properties;
using System;
using System.Windows;
namespace CopyPlusPlus
{
/// <summary>
/// Interaction logic for NotifyUpdate.xaml
/// </summary>
public partial class NotifyUpdate : Window
{
public int Result;
public NotifyUpdate()
{
InitializeComponent();
}
public NotifyUpdate(string message, string buttonText1, string buttonText2)
{
InitializeComponent();
Result = 0;
Message.Text = message;
Button1.Content = buttonText1;
Button2.Content = buttonText2;
}
public void Button2_Click(object sender, RoutedEventArgs e)
{
Settings.Default.LastOpenDate = new DateTime(1999, 7, 24);
Settings.Default.Save();
Close();
}
private void Button1_Click(object sender, RoutedEventArgs e)
{
Settings.Default.LastOpenDate = DateTime.Today;
Settings.Default.Save();
Close();
}
}
}