mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
22 lines
527 B
C#
22 lines
527 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Diagnostics;
|
|||
|
using System.Linq;
|
|||
|
using System.Windows.Controls;
|
|||
|
using GameRes.Formats.Properties;
|
|||
|
using GameRes.Formats.Tactics;
|
|||
|
|
|||
|
namespace GameRes.Formats.GUI
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interaction logic for WidgetTactics.xaml
|
|||
|
/// </summary>
|
|||
|
public partial class WidgetTactics : StackPanel
|
|||
|
{
|
|||
|
public WidgetTactics()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
Title.ItemsSource = Arc2Opener.KnownSchemes.OrderBy (x => x.Key);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|