mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 13:45:34 +08:00
19 lines
428 B
C#
19 lines
428 B
C#
|
using System.Linq;
|
|||
|
using System.Windows.Controls;
|
|||
|
using GameRes.Formats.Musica;
|
|||
|
|
|||
|
namespace GameRes.Formats.GUI
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interaction logic for WidgetPAZ.xaml
|
|||
|
/// </summary>
|
|||
|
public partial class WidgetPAZ : StackPanel
|
|||
|
{
|
|||
|
public WidgetPAZ (PazOpener paz)
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
Scheme.ItemsSource = paz.KnownTitles.Keys.OrderBy (x => x);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|