-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFolderCompareWin.cs
124 lines (112 loc) · 3.99 KB
/
FolderCompareWin.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
namespace FolderCompareWinForms
{
public partial class FolderCompareWin : Form
{
private static FolderCompareWin instance;
public FolderCompareWin()
{
InitializeComponent();
}
private void buttonA_Click(object sender, EventArgs e)
{
folderA.ShowDialog();
if(folderA.SelectedPath != null)
{
FolderCompare.FolderA = folderA.SelectedPath;
textBoxA.Text = folderA.SelectedPath;
UpdateLogMessage("Folder A: " + folderA.SelectedPath);
}
}
private void buttonB_Click(object sender, EventArgs e)
{
folderB.ShowDialog();
if (folderB.SelectedPath != null)
{
FolderCompare.FolderB = folderB.SelectedPath;
textBoxB.Text = folderB.SelectedPath;
UpdateLogMessage("Folder B: " + folderB.SelectedPath);
}
}
private void buttonExport_Click(object sender, EventArgs e)
{
folderExport.ShowDialog();
if (folderExport.SelectedPath != null)
{
FolderCompare.FolderExport = folderExport.SelectedPath;
textBoxExport.Text = folderExport.SelectedPath;
UpdateLogMessage("Folder Export: " + folderExport.SelectedPath);
}
}
private void checkFolderA_CheckedChanged(object sender, EventArgs e)
{
if(checkFolderA.Checked == true)
{
FolderCompare.CheckFolderA = true;
UpdateLogMessage("Check Folder A: " + FolderCompare.CheckFolderA);
}
else
{
FolderCompare.CheckFolderA = false;
UpdateLogMessage("Check Folder A: " + FolderCompare.CheckFolderA);
}
}
private void checkFolderB_CheckedChanged(object sender, EventArgs e)
{
if (checkFolderB.Checked == true)
{
FolderCompare.CheckFolderB = true;
UpdateLogMessage("Check Folder B: " + FolderCompare.CheckFolderB);
}
else
{
FolderCompare.CheckFolderB = false;
UpdateLogMessage("Check Folder B: " + FolderCompare.CheckFolderB);
}
}
private void checkExisting_CheckedChanged(object sender, EventArgs e)
{
if (checkExisting.Checked == true)
{
FolderCompare.checkExisting = true;
UpdateLogMessage("Check Existing: " + FolderCompare.checkExisting);
}
else
{
FolderCompare.checkExisting = false;
UpdateLogMessage("Check Existing: " + FolderCompare.checkExisting);
}
}
private async void buttonConfirm_Click(object sender, EventArgs e)
{
UpdateLogMessage("Comparing and copying Init!");
await FolderCompare.CompareAsync();
UpdateLogMessage("Comparing and copying Finished!");
}
public void UpdateLogMessage(string message)
{
// This method ensures that the update is performed on the UI thread
ThreadSafeUpdate(() => textBox1.AppendText(message + Environment.NewLine));
}
private void ThreadSafeUpdate(Action updateAction)
{
if (this.InvokeRequired)
{
// If we're not on the UI thread, use Invoke to execute the updateAction on the UI thread
this.Invoke(updateAction);
}
else
{
// If we're on the UI thread, execute the updateAction directly
updateAction();
}
}
public static FolderCompareWin GetInstance()
{
return instance;
}
public static void SetInstance(FolderCompareWin instance)
{
FolderCompareWin.instance = instance;
}
}
}