GARbro-mirror/ArcFormats/Tamamo/WidgetPCK.xaml.cs

18 lines
391 B
C#
Raw Normal View History

2017-11-16 15:34:52 +08:00
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;
}
}
}