mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
implemented 'LEAFPACK' archives and LFG images.
This commit is contained in:
18
ArcFormats/Leaf/WidgetLEAF.xaml.cs
Normal file
18
ArcFormats/Leaf/WidgetLEAF.xaml.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user