mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
23 lines
653 B
C#
23 lines
653 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|