mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 13:45:34 +08:00
19 lines
437 B
C#
19 lines
437 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Windows.Controls;
|
|
|
|
namespace GameRes.Formats.GUI
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for WidgetLEAF.xaml
|
|
/// </summary>
|
|
public partial class WidgetLEAF : StackPanel
|
|
{
|
|
public WidgetLEAF (IEnumerable<string> titles)
|
|
{
|
|
this.InitializeComponent();
|
|
this.DataContext = titles.OrderBy (x => x);
|
|
}
|
|
}
|
|
}
|