mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
18 lines
391 B
C#
18 lines
391 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Windows.Controls;
|
|||
|
|
|||
|
namespace GameRes.Formats.GUI
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interaction logic for WidgetPCK.xaml
|
|||
|
/// </summary>
|
|||
|
public partial class WidgetPCK : StackPanel
|
|||
|
{
|
|||
|
public WidgetPCK (IEnumerable<string> keys)
|
|||
|
{
|
|||
|
InitializeComponent ();
|
|||
|
Title.ItemsSource = keys;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|