mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-24 06:05:35 +08:00
20 lines
436 B
C#
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|