mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
added GUI widget for encrypted ASB scripts.
This commit is contained in:
19
ArcFormats/AZSys/WidgetAZ.xaml.cs
Normal file
19
ArcFormats/AZSys/WidgetAZ.xaml.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Linq;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using GameRes.Formats.AZSys;
|
||||
|
||||
namespace GameRes.Formats.GUI
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for WidgetAZ.xaml
|
||||
/// </summary>
|
||||
public partial class WidgetAZ : StackPanel
|
||||
{
|
||||
public WidgetAZ()
|
||||
{
|
||||
InitializeComponent();
|
||||
Scheme.ItemsSource = ArcOpener.KnownKeys.Keys.OrderBy (x => x);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user