mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
22 lines
496 B
C#
22 lines
496 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using GameRes.Formats.Properties;
|
|
using GameRes.Formats.Strings;
|
|
|
|
namespace GameRes.Formats.GUI
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for WidgetWARC.xaml
|
|
/// </summary>
|
|
public partial class WidgetLPK : Grid
|
|
{
|
|
public WidgetLPK ()
|
|
{
|
|
InitializeComponent();
|
|
// select default scheme
|
|
if (-1 == Scheme.SelectedIndex)
|
|
Scheme.SelectedIndex = 0;
|
|
}
|
|
}
|
|
}
|