mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
761ec768b1
added encryption scheme query.
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);
|
|
}
|
|
}
|
|
}
|