mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-24 06:05:35 +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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|