GARbro-mirror/ArcFormats/NSystem/WidgetMSD.xaml.cs
2018-02-03 19:53:41 +04:00

23 lines
635 B
C#

using System.Collections.Generic;
using System.Linq;
using System.Windows.Controls;
using GameRes.Formats.NSystem;
using GameRes.Formats.Properties;
using GameRes.Formats.Strings;
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for WidgetMSD.xaml
/// </summary>
public partial class WidgetMSD : StackPanel
{
public WidgetMSD ()
{
InitializeComponent ();
var first = new Dictionary<string, string> { { arcStrings.ArcNoEncryption, "" } };
Title.ItemsSource = first.Concat (FjsysOpener.KnownPasswords.OrderBy (x => x.Key));
}
}
}