added GUI widget for encrypted ASB scripts.

This commit is contained in:
morkt
2016-04-20 17:52:23 +04:00
parent 65459934b2
commit 0daf668703
7 changed files with 114 additions and 7 deletions

View 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);
}
}
}