mirror of
https://github.com/crskycode/GARbro.git
synced 2025-01-12 12:59:28 +08:00
18 lines
382 B
C#
18 lines
382 B
C#
|
using System.Windows.Controls;
|
|||
|
|
|||
|
namespace GameRes.Formats.GUI
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interaction logic for WidgetDPK.xaml
|
|||
|
/// </summary>
|
|||
|
public partial class WidgetDPK : Grid
|
|||
|
{
|
|||
|
public WidgetDPK ()
|
|||
|
{
|
|||
|
InitializeComponent ();
|
|||
|
if (null == EncScheme.SelectedItem)
|
|||
|
EncScheme.SelectedIndex = 0;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|