mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 15:44:00 +08:00
19 lines
456 B
C#
19 lines
456 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Windows.Controls;
|
|||
|
|
|||
|
namespace GameRes.Formats.GUI
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interaction logic for WidgetSJDAT.xaml
|
|||
|
/// </summary>
|
|||
|
public partial class WidgetSJDAT : StackPanel
|
|||
|
{
|
|||
|
public WidgetSJDAT (IEnumerable<string> known_schemes)
|
|||
|
{
|
|||
|
InitializeComponent ();
|
|||
|
this.Title.ItemsSource = known_schemes.OrderBy (x => x);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|