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