mirror of
https://github.com/crskycode/GARbro.git
synced 2026-06-06 13:48:57 +08:00
19 lines
428 B
C#
19 lines
428 B
C#
using System.Windows.Controls;
|
|
using System.Linq;
|
|
using GameRes.Formats.NonColor;
|
|
|
|
namespace GameRes.Formats.GUI
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for WidgetNCARC.xaml
|
|
/// </summary>
|
|
public partial class WidgetNCARC : StackPanel
|
|
{
|
|
public WidgetNCARC()
|
|
{
|
|
InitializeComponent();
|
|
Scheme.ItemsSource = DatOpener.KnownSchemes.OrderBy (x => x.Key);
|
|
}
|
|
}
|
|
}
|