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