mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
27 lines
741 B
C#
27 lines
741 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Linq;
|
|
using GameRes.Formats.Properties;
|
|
|
|
namespace GameRes.Formats.GUI
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for WidgetNPA.xaml
|
|
/// </summary>
|
|
public partial class WidgetNPA : Grid
|
|
{
|
|
public WidgetNPA ()
|
|
{
|
|
InitializeComponent();
|
|
var sorted = NpaOpener.KnownSchemes.Skip (1).OrderBy (x => x);
|
|
Scheme.ItemsSource = NpaOpener.KnownSchemes.Take(1).Concat (sorted);
|
|
Scheme.SelectedItem = NpaOpener.KnownSchemes[(int)Settings.Default.NPAScheme];
|
|
}
|
|
|
|
public string GetScheme()
|
|
{
|
|
return Scheme.SelectedItem as string;
|
|
}
|
|
}
|
|
}
|