mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
implemented "strong" QLIE archives encryption.
This commit is contained in:
22
ArcFormats/Qlie/WidgetQLIE.xaml.cs
Normal file
22
ArcFormats/Qlie/WidgetQLIE.xaml.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using GameRes.Formats.Qlie;
|
||||
using GameRes.Formats.Strings;
|
||||
using System.Windows.Controls;
|
||||
using System.Linq;
|
||||
|
||||
namespace GameRes.Formats.GUI
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for WidgetQLIE.xaml
|
||||
/// </summary>
|
||||
public partial class WidgetQLIE : StackPanel
|
||||
{
|
||||
public WidgetQLIE ()
|
||||
{
|
||||
InitializeComponent ();
|
||||
var keys = new string[] { arcStrings.QLIEDefaultScheme };
|
||||
Scheme.ItemsSource = keys.Concat (PackOpener.KnownKeys.Keys.OrderBy (x => x));
|
||||
if (-1 == Scheme.SelectedIndex)
|
||||
Scheme.SelectedIndex = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user