GARbro-mirror/ArcFormats/Entis/WidgetNOA.xaml.cs

24 lines
662 B
C#
Raw Normal View History

using GameRes.Formats.Entis;
using GameRes.Formats.Strings;
using System.Linq;
using System.Windows.Controls;
2015-05-27 17:57:34 +08:00
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for WidgetNOA.xaml
/// </summary>
public partial class WidgetNOA : Grid
{
public WidgetNOA ()
{
InitializeComponent ();
2015-11-24 01:28:32 +08:00
var keys = new string[] { arcStrings.ArcIgnoreEncryption };
Scheme.ItemsSource = keys.Concat (NoaOpener.KnownKeys.Keys.OrderBy (x => x));
2015-05-27 17:57:34 +08:00
// select first scheme as default
if (-1 == Scheme.SelectedIndex)
Scheme.SelectedIndex = 0;
}
}
}