-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpart_Haubtprogramm.cs
125 lines (104 loc) · 4.23 KB
/
part_Haubtprogramm.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
125
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Threading;
namespace OnTimePad_WPF
{
public partial class MainWindow
{
//Fields zur Kommunikation aus den Hintergrund-Threads! :)
private string[] strArr_TextBox_PfadWaehlen = null;
private string str_TextBox_SpeicherOrt = "";
private string str_TextBox_Schluessel = "";
//Fields
private FileInfo fi1;
private bool AbbruchFlag = false;
private async void Button_Verschluesseln(object sender, RoutedEventArgs e)
{
this.AbbruchFlag = false;
//Wenn nichts ausgewählt wurde oder nur von Hand ein Pfad in
//'TextBox_PfadWaehlen' Eingetragen wurde!! :/
if (strArr_TextBox_PfadWaehlen == null)
{
this.strArr_TextBox_PfadWaehlen = new string[1];
this.strArr_TextBox_PfadWaehlen[0] = TextBox_PfadWaehlen.Text;
}
//Schleife um alle Dateien die ausgewählt wurden durchzugehen. :)
for (int x = 0; x < strArr_TextBox_PfadWaehlen.Length; ++x)
{
if (this.AbbruchFlag)
break;
//Fields initalisieren
fi1 = null;
fi1 = new FileInfo(strArr_TextBox_PfadWaehlen[x]);
//Infos! :)
TextBlock_Infos.Text = "Files Nr: " + (x + 1) + " " + fi1.Name;
//Felder Aktualisieren. :/
this.str_TextBox_SpeicherOrt = TextBox_SpeicherOrt.Text;
this.str_TextBox_Schluessel = TextBox_Schluessel.Text;
if ((bool)CheckBox1.IsChecked)
{
Button_Ver.IsEnabled = false;
await Task.Factory.StartNew(() => On_Time_Pad_Vers());
Button_Ver.IsEnabled = true;
}
else
{
Button_Ver.IsEnabled = false;
await Task.Factory.StartNew(() => Pass_Vers());
Button_Ver.IsEnabled = true;
}
}
}
private async void Button_Entschluesseln(object sender, RoutedEventArgs e)
{
this.AbbruchFlag = false;
//Wenn nichts ausgewählt wurde oder nur von Hand ein Pfad in
//'TextBox_PfadWaehlen' Eingetragen wurde!! :/
if (strArr_TextBox_PfadWaehlen == null)
{
this.strArr_TextBox_PfadWaehlen = new string[1];
this.strArr_TextBox_PfadWaehlen[0] = TextBox_PfadWaehlen.Text;
}
//Schleife um alle Dateien die ausgewählt wurden durchzugehen. :)
for (int x = 0; x < strArr_TextBox_PfadWaehlen.Length; ++x)
{
if (this.AbbruchFlag)
break;
//Fields initalisieren
fi1 = null;
fi1 = new FileInfo(strArr_TextBox_PfadWaehlen[x]);
//Infos! :)
TextBlock_Infos.Text = "Files Nr: " + (x + 1) + " " + fi1.Name;
//Felder Aktualisieren. :/
this.str_TextBox_SpeicherOrt = TextBox_SpeicherOrt.Text;
this.str_TextBox_Schluessel = TextBox_Schluessel.Text;
if ((bool)CheckBox1.IsChecked)
{
Button_Ent.IsEnabled = false;
await Task.Factory.StartNew(() => On_Time_Pad_Ents());
Button_Ent.IsEnabled = true;
}
else
{
Button_Ent.IsEnabled = false;
await Task.Factory.StartNew(() => Pass_Ents());
Button_Ent.IsEnabled = true;
}
}
}
}
}