-
Notifications
You must be signed in to change notification settings - Fork 10
/
MainWindow.xaml
421 lines (420 loc) · 23 KB
/
MainWindow.xaml
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
<Window x:Class="nsZip.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:nsZip"
xmlns:system="clr-namespace:System;assembly=mscorlib"
mc:Ignorable="d"
Title="nsZip File Manager v2.0.0 preview 4" Height="450" Width="800">
<Window.Resources>
<Style x:Key="ButtonDefaultStyle" TargetType="{x:Type Button}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border Background="{TemplateBinding Background}" BorderBrush="Black" BorderThickness="1">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="White" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="Button_SelectInputToCompress_OnMouseOverStyle" BasedOn="{StaticResource ButtonDefaultStyle}"
TargetType="{x:Type Button}">
<Setter Property="Background" Value="#FFCEFFC8" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#FF7CFF6C" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="Button_SelectInputToDecompress_OnMouseOverStyle" BasedOn="{StaticResource ButtonDefaultStyle}"
TargetType="{x:Type Button}">
<Setter Property="Background" Value="#FFDCC8FF" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#FFBF9BFF" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="Button_Run_OnMouseOverStyle" BasedOn="{StaticResource ButtonDefaultStyle}" TargetType="{x:Type Button}">
<Setter Property="Background" Value="#FFFFEEC8" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#FFFFC545" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="Button_SelectInputFiles_OnMouseOverStyle" BasedOn="{StaticResource ButtonDefaultStyle}" TargetType="{x:Type Button}">
<Setter Property="Background" Value="#FF80F0C8" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#FF00DFAF" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="Button_ExtractTitlekeys_OnMouseOverStyle" BasedOn="{StaticResource ButtonDefaultStyle}" TargetType="{x:Type Button}">
<Setter Property="Background" Value="#FFD1FF6C" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#FFAFFF00" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="Button_ExtractTickets_OnMouseOverStyle" BasedOn="{StaticResource ButtonDefaultStyle}" TargetType="{x:Type Button}">
<Setter Property="Background" Value="#FFFFFD8B" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#FFFFFB00" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="Button_ExtractPfsHfs_OnMouseOverStyle" BasedOn="{StaticResource ButtonDefaultStyle}" TargetType="{x:Type Button}">
<Setter Property="Background" Value="#FFFFDA8B" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#FFFDB561" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="Button_ExtractRomFS_OnMouseOverStyle" BasedOn="{StaticResource ButtonDefaultStyle}" TargetType="{x:Type Button}">
<Setter Property="Background" Value="#FFFFAC8B" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#FFF97E5C" />
</Trigger>
</Style.Triggers>
</Style>
</Window.Resources>
<Grid>
<Viewbox x:Name="MainGrid">
<TabControl x:Name="MainTabControl" HorizontalAlignment="Left" Height="411" VerticalAlignment="Top" Width="783"
Background="#FF525252">
<TabItem x:Name="TasksTab" Header="Tasks" FontSize="20" RenderTransformOrigin="0.153,1.656">
<Grid x:Name="TasksGrid" Background="#FFE5E5E5">
<WrapPanel HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top">
<Button x:Name="SelectFileToCompressButton" FontSize="36" Height="99" Width="298" Margin="0,0,10,0"
Style="{StaticResource Button_SelectInputToCompress_OnMouseOverStyle}"
Click="SelectFileToCompressButton_Click">
<TextBlock TextWrapping="Wrap" HorizontalAlignment="Center" TextAlignment="Center">
<Run Text="Select NSP/XCI files to Compress" />
</TextBlock>
</Button>
<Button x:Name="SelectNspFileToDecompressButton" FontSize="36" Height="99" Width="298" Margin="10,0"
Style="{StaticResource Button_SelectInputToDecompress_OnMouseOverStyle}"
Click="SelectNspFileToDecompressButton_Click">
<TextBlock TextWrapping="Wrap" HorizontalAlignment="Center" TextAlignment="Center">
<Run Text="Select NSPZ files to Decompress" />
</TextBlock>
</Button>
<Button x:Name="RunButton" FontSize="36" Height="99" Width="120" Margin="10,0,0,0"
Style="{StaticResource Button_Run_OnMouseOverStyle}" Click="RunButton_Click">
<TextBlock TextWrapping="Wrap" HorizontalAlignment="Center" TextAlignment="Center">
<Run Text="RUN!" />
</TextBlock>
</Button>
</WrapPanel>
<ListBox x:Name="TaskQueue" HorizontalAlignment="Left" Height="236" Margin="10,126,0,0" VerticalAlignment="Top"
Width="756" Background="#FFCCCCCC" />
</Grid>
</TabItem>
<TabItem x:Name="SettingsTab" Header="Settings" FontSize="20" Height="35" VerticalAlignment="Bottom">
<Grid Background="#FFE5E5E5">
<GroupBox x:Name="nsZipSettingsGroupBox" Header="nsZip Settings:" HorizontalAlignment="Left" Margin="10,10,0,0"
VerticalAlignment="Top">
<Grid HorizontalAlignment="Left">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="200" />
<ColumnDefinition Width="240" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="40" />
<RowDefinition Height="40" />
<RowDefinition Height="40" />
<RowDefinition Height="40" />
<RowDefinition Height="40" />
</Grid.RowDefinitions>
<TextBlock x:Name="OutputFolderTextBlock" Grid.Column="0" Grid.Row="0" Text="Output Folder:"
VerticalAlignment="Center"
FontWeight="Bold" />
<WrapPanel x:Name="OutputFolderWrapPanel" Grid.Column="1" Grid.Row="0" HorizontalAlignment="Left"
Margin="0,0,0,0" VerticalAlignment="Center">
<TextBox x:Name="OutputFolderTextBox" HorizontalAlignment="Left" Height="32" Margin="0,0,0,0" Text=""
VerticalAlignment="Top" Width="190" TextChanged="OutputFolderTextBox_TextChanged" />
<Button x:Name="OutputFolderButton" Content="..." HorizontalAlignment="Left" Margin="10,0,0,0"
VerticalAlignment="Top" Height="32" Width="40" Click="OutputFolderButton_Click" />
</WrapPanel>
<TextBlock x:Name="VerificationTextBlock" Grid.Column="0" Grid.Row="1" Text="Verification:"
VerticalAlignment="Center"
FontWeight="Bold" />
<ComboBox x:Name="VerificationComboBox" Grid.Column="1" Grid.Row="1"
VerticalAlignment="Center" Margin="0,2,0,1.333"
SelectionChanged="VerificationComboBox_SelectionChanged">
<ComboBoxItem Content="Yes" />
<ComboBoxItem Content="No" />
</ComboBox>
<TextBlock x:Name="CheckForUpdatesTextBlock" Grid.Column="0" Grid.Row="2" Text="Check for Updates:"
VerticalAlignment="Center"
FontWeight="Bold" />
<ComboBox x:Name="CheckForUpdatesComboBox" Grid.Column="1" Grid.Row="2"
VerticalAlignment="Center" Margin="0,2,0,1.333"
SelectionChanged="CheckForUpdatesComboBox_SelectionChanged" IsEnabled="False">
<ComboBoxItem Content="[NOT AVAILABLE]" />
<ComboBoxItem Content="[NOT AVAILABLE]" />
</ComboBox>
<TextBlock x:Name="CompressionLevelTextBlock" Grid.Column="0" Grid.Row="3" Text="Compression Level:"
VerticalAlignment="Center"
FontWeight="Bold" />
<ComboBox x:Name="CompressionLevelComboBox" Grid.Column="1" Grid.Row="3"
VerticalAlignment="Center" Margin="0,2,0,1.333"
SelectionChanged="CompressionLevelComboBox_SelectionChanged">
<ComboBoxItem Content="[Lv. 08] Faster">
<ComboBoxItem.Tag>
<system:Int32>8</system:Int32>
</ComboBoxItem.Tag>
</ComboBoxItem>
<ComboBoxItem Content="[Lv. 12] Fast">
<ComboBoxItem.Tag>
<system:Int32>12</system:Int32>
</ComboBoxItem.Tag>
</ComboBoxItem>
<ComboBoxItem Content="[Lv. 14] Normal">
<ComboBoxItem.Tag>
<system:Int32>14</system:Int32>
</ComboBoxItem.Tag>
</ComboBoxItem>
<ComboBoxItem Content="[Lv. 18] Great">
<ComboBoxItem.Tag>
<system:Int32>18</system:Int32>
</ComboBoxItem.Tag>
</ComboBoxItem>
<ComboBoxItem Content="[Lv. 22] Ultra">
<ComboBoxItem.Tag>
<system:Int32>22</system:Int32>
</ComboBoxItem.Tag>
</ComboBoxItem>
</ComboBox>
<TextBlock x:Name="BlockSizeTextBlock" Grid.Column="0" Grid.Row="4" Text="Block Size:"
VerticalAlignment="Center"
FontWeight="Bold" />
<ComboBox x:Name="BlockSizeComboBox" Grid.Column="1" Grid.Row="4"
VerticalAlignment="Center" Margin="0,2,0,1.333" SelectionChanged="BlockSizeComboBox_SelectionChanged">
<ComboBoxItem Content="256 KB">
<ComboBoxItem.Tag>
<system:Int32>262144</system:Int32>
</ComboBoxItem.Tag>
</ComboBoxItem>
<ComboBoxItem Content="512 KB">
<ComboBoxItem.Tag>
<system:Int32>524288</system:Int32>
</ComboBoxItem.Tag>
</ComboBoxItem>
</ComboBox>
</Grid>
</GroupBox>
<TextBlock HorizontalAlignment="Left" Margin="477,28,0,0" TextWrapping="Wrap" VerticalAlignment="Top"
Height="330" Width="290"><Span Foreground="Black" FontWeight="Bold" FontSize="20" FontFamily="Segoe UI"><Run Text="Verifications"/></Span><Run Text=": Will ensure that the compressed file can be decompressed to the exact same NCA"/><Run Text=" "/><Run Text="files. In no case a corrupted output file should be possible if enabled."/><Span Foreground="Black" FontSize="20" FontFamily="Segoe UI"><LineBreak/></Span><Span Foreground="Black" FontSize="20" FontFamily="Segoe UI"><LineBreak/></Span><Span Foreground="Black" FontWeight="Bold" FontSize="20" FontFamily="Segoe UI"><Run Text="Check for update"/></Span><Run FontSize="20" FontFamily="Segoe UI" Text=": Will notify nsZip portable users when there is an update available as replacement of the system used by the installed version"/><Run FontSize="20" FontFamily="Segoe UI" Text="."/></TextBlock>
<TextBlock HorizontalAlignment="Left" Margin="10,248,0,0" TextWrapping="Wrap" VerticalAlignment="Top"
Height="110" Width="442"><Span Foreground="Black" FontWeight="Bold"><Run Text="Compression Level"/></Span><Span Foreground="Black"><Run Text=": Trade-off between compression speed and compression ratio."/></Span><Span Foreground="Black" FontSize="20" FontFamily="Segoe UI"><LineBreak/></Span><Span Foreground="Black" FontWeight="Bold"><Run Text="Block Size"/></Span><Span Foreground="Black"><Run Text=": Trade-off between random access speed to compressed data and compression ratio."/></Span></TextBlock>
</Grid>
</TabItem>
<TabItem x:Name="AdvancedTab" Header="Advanced" FontSize="20">
<Grid Background="#FFE5E5E5">
<GroupBox Header="Advanced nsZip Settings" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,10,0,0">
<Grid HorizontalAlignment="Left">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="220" />
<ColumnDefinition Width="240" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="40" />
<RowDefinition Height="40" />
<RowDefinition Height="40" />
</Grid.RowDefinitions>
<TextBlock x:Name="TempFolderTextBlock" Grid.Column="0" Grid.Row="0" Text="Temp folder:"
VerticalAlignment="Center"
FontWeight="Bold" />
<WrapPanel x:Name="TempFolderWrapPanel" Grid.Column="1" Grid.Row="0" HorizontalAlignment="Left"
Margin="0,0,0,0" VerticalAlignment="Center">
<TextBox x:Name="TempFolderTextBox" HorizontalAlignment="Left" Height="32" Margin="0,0,0,0" Text=""
VerticalAlignment="Top" Width="190" TextChanged="TempFolderTextBox_TextChanged" />
<Button x:Name="TempFolderButton" Content="..." HorizontalAlignment="Left" Margin="10,0,0,0"
VerticalAlignment="Top" Height="32" Width="40" Click="TempFolderButton_Click" />
</WrapPanel>
<TextBlock x:Name="KeepTempFilesAfterTaskTextBlock" Grid.Column="0" Grid.Row="1" Text="Keep temporary files:"
VerticalAlignment="Center"
FontWeight="Bold" />
<ComboBox x:Name="KeepTempFilesAfterTaskComboBox" Grid.Column="1" Grid.Row="1"
VerticalAlignment="Center" Margin="0,2,0,1.333"
SelectionChanged="KeepTempFilesAfterTaskComboBox_SelectionChanged">
<ComboBoxItem Content="Yes" />
<ComboBoxItem Content="No" />
</ComboBox>
<TextBlock x:Name="StandbyWhenTaskDoneTextBlock" Grid.Column="0" Grid.Row="2" Text="Standby when done:"
VerticalAlignment="Center"
FontWeight="Bold" />
<ComboBox x:Name="StandByWhenTaskDoneComboBox" Grid.Column="1" Grid.Row="2"
VerticalAlignment="Center" Margin="0,2,0,1.333"
SelectionChanged="StandByWhenTaskDoneComboBox_SelectionChanged">
<ComboBoxItem Content="No" />
<ComboBoxItem Content="Standby" />
<ComboBoxItem Content="Hibernate" />
</ComboBox>
</Grid>
</GroupBox>
<TextBlock HorizontalAlignment="Left" Margin="487,27,0,0" TextWrapping="Wrap" VerticalAlignment="Top"
Height="331" Width="280"><Span Foreground="Black" FontWeight="Bold" FontSize="20" FontFamily="Segoe UI"><Run Text="Temp folder: "/></Span><Span Foreground="Black" FontSize="20" FontFamily="Segoe UI"><Run Text="Location of temporarily files. Requires around largest input * 5 free space. SSD/RAMdisk will result in faster speed. "/></Span><Span Foreground="Black" FontSize="20" FontFamily="Segoe UI"><LineBreak/></Span><Span Foreground="Black" FontWeight="Bold" FontSize="20" FontFamily="Segoe UI"><Run Text="Keep temporary files:"/></Span><Span Foreground="Black" FontSize="20" FontFamily="Segoe UI"><Run Text=" Only delete temporary files when a task starts but not when it's completed. "/></Span><Span Foreground="Black" FontSize="20" FontFamily="Segoe UI"><LineBreak/></Span><Span Foreground="Black" FontWeight="Bold" FontSize="20" FontFamily="Segoe UI"><Run Text="Standby when done:"/></Span><Span Foreground="Black" FontSize="20" FontFamily="Segoe UI"><Run Text=" Puts your PC into standby when all tasks are completed."/></Span></TextBlock>
<TextBlock HorizontalAlignment="Left" Margin="10,169,0,0" TextWrapping="Wrap" VerticalAlignment="Top"
Height="189" Width="472">
<Run Text="More futures will be added in the future. Feel free to post your suggestion on" />
<Hyperlink
NavigateUri="https://github.com/nicoboss/nsZip"
ToolTip="https://github.com/nicoboss/nsZip"
RequestNavigate="Hyperlink_RequestNavigate">
GitHub
</Hyperlink>
<Run Text="and" />
<Hyperlink
NavigateUri="https://gbatemp.net/threads/nszip-nsp-compressor-decompressor-to-reduce-storage.530313/"
ToolTip="https://gbatemp.net/threads/nszip-nsp-compressor-decompressor-to-reduce-storage.530313/"
RequestNavigate="Hyperlink_RequestNavigate">
GBAtemp
</Hyperlink>
<LineBreak /><Run /><LineBreak /><Run FontWeight="Bold" Text="Command Line Arguments:" /><LineBreak />
<Run Text="-i = " /><Run Text="Input " /><Run Text="file to compress/decompress" /><LineBreak />
<Run Text="-l = Compression level [1-" /><Run Text="22" /><Run Text="] (default: 18)" /><LineBreak />
<Run Text="-b = Block Size in bytes (default: 262144)" /><LineBreak />
</TextBlock>
</Grid>
</TabItem>
<TabItem x:Name="ToolsTab" Header="Tools" FontSize="20">
<Grid Background="#FFE5E5E5">
<Grid x:Name="ToolsGrid" Background="#FFE5E5E5">
<WrapPanel HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top">
<Button x:Name="SelectInputFilesButton" FontSize="36" Height="80" Width="304" Margin="0,0,10,0"
Style="{StaticResource Button_SelectInputFiles_OnMouseOverStyle}"
Click="SelectInputFilesButton_Click">
<TextBlock TextWrapping="Wrap" HorizontalAlignment="Center" TextAlignment="Center" FontSize="28" Text="Select NSP/XCI/NSPZ/XCIZ files to progress"/>
</Button>
<Button x:Name="ExtractTitlekeysButton" FontSize="36" Height="80" Width="100" Margin="10,0,0,0"
Style="{StaticResource Button_ExtractTitlekeys_OnMouseOverStyle}"
Click="ExtractTitlekeys_Click">
<TextBlock TextWrapping="Wrap" HorizontalAlignment="Center" TextAlignment="Center" FontSize="24" Text="Extract Titlekeys"/>
</Button>
<Button x:Name="ExtractTicketsButton" FontSize="36" Height="80" Width="100" Margin="10,0,0,0"
Style="{StaticResource Button_ExtractTickets_OnMouseOverStyle}"
Click="ExtractTickets_Click">
<TextBlock TextWrapping="Wrap" HorizontalAlignment="Center" TextAlignment="Center" FontSize="24" Text="Extract Tickets"/>
</Button>
<Button x:Name="ExtractPfsHfsButton" FontSize="36" Height="80" Width="100" Margin="10,0,0,0"
Style="{StaticResource Button_ExtractPfsHfs_OnMouseOverStyle}"
Click="ExtractPfsHfs_Click">
<TextBlock TextWrapping="Wrap" HorizontalAlignment="Center" TextAlignment="Center" FontSize="24" Text="Extract PFS/HFS"/>
</Button>
<Button x:Name="ExtractRomFSButton" FontSize="36" Height="80" Width="100" Margin="10,0,0,0"
Style="{StaticResource Button_ExtractRomFS_OnMouseOverStyle}"
Click="ExtractRomFS_Click">
<TextBlock TextWrapping="Wrap" HorizontalAlignment="Center" TextAlignment="Center" FontSize="24" Text="Extract RomFS"/>
</Button>
</WrapPanel>
<ListBox x:Name="ToolsTaskQueue" HorizontalAlignment="Left" Height="258" Margin="10,104,0,0" VerticalAlignment="Top"
Width="756" Background="#FFCCCCCC" />
</Grid>
</Grid>
</TabItem>
<TabItem x:Name="AboutTab" Header="About" FontSize="20">
<Grid Background="#FFE5E5E5">
<TextBlock TextWrapping="Wrap" Margin="10,10,9.667,243" LineHeight="16">
<Run FontWeight="Bold" FontSize="24" Text="nsZip v2.0.0 - (c) 2019 Nico Bosshard"/><LineBreak/>
<Run Text="A tool to compress/decompress Switch games using the NSP compression format."/><LineBreak/>
<Run FontWeight="Bold" Text="GitHub: "/>
<Hyperlink
NavigateUri="https://github.com/nicoboss/nsZip"
ToolTip="https://github.com/nicoboss/nsZip"
RequestNavigate="Hyperlink_RequestNavigate">
https://github.com/nicoboss/nsZip
</Hyperlink>
<LineBreak/>
<Hyperlink
NavigateUri="https://gbatemp.net/threads/nszip-nsp-compressor-decompressor-to-reduce-storage.530313/"
ToolTip="https://gbatemp.net/threads/nszip-nsp-compressor-decompressor-to-reduce-storage.530313/"
RequestNavigate="Hyperlink_RequestNavigate">
GBAtemp
</Hyperlink>
<Hyperlink
NavigateUri="https://github.com/nicoboss/nsZip/releases"
ToolTip="https://github.com/nicoboss/nsZip/releases"
RequestNavigate="Hyperlink_RequestNavigate">
Releases
</Hyperlink>
<Hyperlink
NavigateUri="https://github.com/nicoboss/nsZip/issues"
ToolTip="https://github.com/nicoboss/nsZip/issues"
RequestNavigate="Hyperlink_RequestNavigate">
Issues
</Hyperlink>
<Hyperlink
NavigateUri="https://github.com/nicoboss/nsZip/commits/master"
ToolTip="https://github.com/nicoboss/nsZip/commits/master"
RequestNavigate="Hyperlink_RequestNavigate">
Commits
</Hyperlink>
<Hyperlink
NavigateUri="https://github.com/nicoboss/nsZip/pulls"
ToolTip="https://github.com/nicoboss/nsZip/pulls"
RequestNavigate="Hyperlink_RequestNavigate">
Pull Requests
</Hyperlink>
<Hyperlink
NavigateUri="https://github.com/nicoboss/nsZip/blob/master/LICENSE"
ToolTip="https://github.com/nicoboss/nsZip/blob/master/LICENSE"
RequestNavigate="Hyperlink_RequestNavigate">
License
</Hyperlink>
<Hyperlink
NavigateUri="https://github.com/nicoboss/nsZip/wiki"
ToolTip="https://github.com/nicoboss/nsZip/wiki"
RequestNavigate="Hyperlink_RequestNavigate">
Wiki
</Hyperlink>
<LineBreak/>
</TextBlock>
<TextBox x:Name="LicenseTextBox" HorizontalAlignment="Left" Height="228" Margin="10,130,0,0" TextWrapping="Wrap"
Text="License: MIT (load from file)" VerticalAlignment="Top" Width="757" IsReadOnly="True"
VerticalScrollBarVisibility="Visible" FontSize="16" Background="#FFCCCCCC" />
</Grid>
</TabItem>
</TabControl>
</Viewbox>
<Viewbox x:Name="MainGridBusy" Visibility="Hidden">
<TabControl x:Name="MainTabControl1" HorizontalAlignment="Left" Height="411" VerticalAlignment="Top" Width="783"
Background="#FF525252">
<TabItem x:Name="TasksTab1" Header="Tasks" FontSize="20" Margin="-2,-2,-1.667,3.667">
<Grid>
<Rectangle>
<Rectangle.Fill>
<LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
<GradientStop Color="Red" Offset="0.0" />
<GradientStop Color="Orange" Offset="0.2" />
<GradientStop Color="Yellow" Offset="0.4" />
<GradientStop Color="Green" Offset="0.6" />
<GradientStop Color="DarkBlue" Offset="0.8" />
<GradientStop Color="Violet" Offset="1.0" />
</LinearGradientBrush>
</Rectangle.Fill>
</Rectangle>
<Border BorderThickness="2" BorderBrush="#FF404040" Margin="10">
<TextBlock x:Name="BusyTextBlock" Text="Working..." Background="#CCCCCCCC" Padding="15,10" TextWrapping="Wrap"
FontSize="36" />
</Border>
</Grid>
</TabItem>
</TabControl>
</Viewbox>
</Grid>
</Window>