mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 13:45:34 +08:00
a775bfe557
added known titles list as widget parameter.
19 lines
425 B
C#
19 lines
425 B
C#
using System.Collections.Generic;
|
|
using System.Windows.Controls;
|
|
using System.Linq;
|
|
|
|
namespace GameRes.Formats.GUI
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for WidgetNPK.xaml
|
|
/// </summary>
|
|
public partial class WidgetNPK : Grid
|
|
{
|
|
public WidgetNPK (IEnumerable<string> titles)
|
|
{
|
|
InitializeComponent();
|
|
Scheme.ItemsSource = titles.OrderBy (x => x);
|
|
}
|
|
}
|
|
}
|