1
0
mirror of https://github.com/crskycode/GARbro.git synced 2025-01-15 06:13:53 +08:00

20 lines
436 B
C#

using System.Linq;
using System.Windows;
using System.Windows.Controls;
using GameRes.Formats.AZSys;
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for WidgetAZ.xaml
/// </summary>
public partial class WidgetAZ : StackPanel
{
public WidgetAZ()
{
InitializeComponent();
Scheme.ItemsSource = ArcOpener.KnownKeys.Keys.OrderBy (x => x);
}
}
}