implemented ISF scripts decryption.

This commit is contained in:
morkt
2015-06-18 17:04:12 +04:00
parent 5288e75c6b
commit 6f8b57cc03
11 changed files with 270 additions and 7 deletions

10
ArcFormats/WidgetISF.xaml Normal file
View File

@@ -0,0 +1,10 @@
<StackPanel x:Class="GameRes.Formats.GUI.WidgetISF"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:fmt="clr-namespace:GameRes.Formats.DRS"
xmlns:p="clr-namespace:GameRes.Formats.Properties"
Orientation="Vertical" MaxWidth="250">
<ComboBox Name="Scheme" ItemsSource="{Binding Source={x:Static fmt:MpxOpener.KnownSecrets}, Path=Keys, Mode=OneWay}"
SelectedValue="{Binding Source={x:Static p:Settings.Default}, Path=ISFScheme, Mode=TwoWay}"
Width="200" Grid.Row="0"/>
</StackPanel>