-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
67 lines (59 loc) · 2.37 KB
/
MainWindow.xaml
File metadata and controls
67 lines (59 loc) · 2.37 KB
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
<Window x:Class="BuildIsoEncrypt.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="BuildIso Encrypt" Height="283" Width="500"
Background="#FFFFAFAF" Foreground="White"
AllowDrop="True"
Drop="Window_Drop"
DragOver="Window_DragOver">
<Grid Margin="20" Background="#FFFFAFAF">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Text="This exe is offline"
FontSize="10"
HorizontalAlignment="Right"
Margin="0,0,0,5"/>
<TextBlock Text="BuildIso Encrypt v2026.1"
FontSize="26"
HorizontalAlignment="Center"
Margin="0,0,0,15"/>
<StackPanel Grid.Row="1" Orientation="Horizontal" Margin="0,0,0,10">
<TextBox x:Name="FilePathBox"
Text="Browse the PATH of your file."
Width="330"
Height="28"
IsReadOnly="True"
Margin="0,0,10,0"/>
<Button Content="Browse"
Width="100"
Height="28"
Click="Browse_Click"/>
</StackPanel>
<StackPanel Grid.Row="2" Margin="0,0,0,10">
<PasswordBox x:Name="PasswordBox"
Height="28"/>
<TextBlock Text="Password"
FontSize="11"
Foreground="#AAAAAA"/>
</StackPanel>
<StackPanel Grid.Row="3"
Orientation="Horizontal"
HorizontalAlignment="Center"
Margin="0,10,0,0">
<Button Content="Encrypt"
Width="140"
Height="32"
Margin="10"
Click="Encrypt_Click"/>
<Button Content="Decrypt"
Width="140"
Height="32"
Margin="10"
Click="Decrypt_Click"/>
</StackPanel>
</Grid>
</Window>