implemented Nitro+ archives creation.

encryption not implemented yet.
This commit is contained in:
morkt
2014-08-18 09:07:35 +04:00
parent 881a95c165
commit 8697257e79
12 changed files with 451 additions and 46 deletions

View File

@@ -0,0 +1,24 @@
using System.Windows.Controls;
using GameRes.Formats.NitroPlus;
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for CreateNPAWidget.xaml
/// </summary>
public partial class CreateNPAWidget : Grid
{
public CreateNPAWidget ()
{
InitializeComponent ();
}
private void Reset_Click (object sender, System.Windows.RoutedEventArgs e)
{
this.EncryptionWidget.Scheme.SelectedIndex = 0;
this.Key1Box.Text = NpaOpener.DefaultKey1.ToString ("X8");
this.Key2Box.Text = NpaOpener.DefaultKey2.ToString ("X8");
this.CompressContents.IsChecked = false;
}
}
}