mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
reorganized project directory structure.
This commit is contained in:
27
ArcFormats/KiriKiri/WidgetXP3.xaml.cs
Normal file
27
ArcFormats/KiriKiri/WidgetXP3.xaml.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using GameRes.Formats.KiriKiri;
|
||||
using GameRes.Formats.Properties;
|
||||
using GameRes.Formats.Strings;
|
||||
|
||||
|
||||
namespace GameRes.Formats.GUI
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for WidgetXP3.xaml
|
||||
/// </summary>
|
||||
public partial class WidgetXP3 : Grid
|
||||
{
|
||||
public WidgetXP3 ()
|
||||
{
|
||||
InitializeComponent();
|
||||
if (null == Scheme.SelectedItem)
|
||||
Scheme.SelectedItem = arcStrings.ArcNoEncryption;
|
||||
}
|
||||
|
||||
public ICrypt GetScheme ()
|
||||
{
|
||||
return Xp3Opener.GetScheme (Scheme.SelectedItem as string);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user