GARbro-mirror/ArcFormats/ExHibit/WidgetGYU.xaml.cs

18 lines
394 B
C#
Raw Normal View History

using System.Collections.Generic;
using System.Windows.Controls;
2016-08-04 09:05:44 +08:00
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for WidgetGYU.xaml
/// </summary>
public partial class WidgetGYU : StackPanel
{
public WidgetGYU (IEnumerable<string> titles)
2016-08-04 09:05:44 +08:00
{
InitializeComponent();
Title.ItemsSource = titles;
2016-08-04 09:05:44 +08:00
}
}
}