(MGPK): added encryption query widget.

This commit is contained in:
morkt
2016-07-04 00:11:14 +04:00
parent 883ee94a7e
commit 27684875cf
9 changed files with 269 additions and 290 deletions

View File

@@ -0,0 +1,22 @@
using System.Linq;
using System.Windows.Controls;
using GameRes.Formats.Mg;
using GameRes.Formats.Strings;
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for WidgetMGPK.xaml
/// </summary>
public partial class WidgetMGPK : StackPanel
{
public WidgetMGPK()
{
InitializeComponent();
var keys = new string[] { arcStrings.ArcNoEncryption };
Title.ItemsSource = keys.Concat (MgpkOpener.KnownKeys.Keys.OrderBy (x => x));
if (-1 == Title.SelectedIndex)
Title.SelectedIndex = 0;
}
}
}