mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
(EAGLS): encryption variation.
This commit is contained in:
22
ArcFormats/Eagls/WidgetEAGLS.xaml.cs
Normal file
22
ArcFormats/Eagls/WidgetEAGLS.xaml.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Windows.Controls;
|
||||
using System.Linq;
|
||||
using GameRes.Formats.Eagls;
|
||||
using GameRes.Formats.Strings;
|
||||
|
||||
namespace GameRes.Formats.GUI
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for WidgetEAGLS.xaml
|
||||
/// </summary>
|
||||
public partial class WidgetEAGLS : StackPanel
|
||||
{
|
||||
public WidgetEAGLS ()
|
||||
{
|
||||
InitializeComponent ();
|
||||
var schemes = new string[] { arcStrings.ArcIgnoreEncryption };
|
||||
Scheme.ItemsSource = schemes.Concat (PakOpener.KnownSchemes.Keys);
|
||||
if (-1 == Scheme.SelectedIndex)
|
||||
Scheme.SelectedValue = PakOpener.KnownSchemes.First().Key;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user