mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
add image format support for CSystem when there is Resources subdirectory And update database
This commit is contained in:
22
ArcFormats/Cyberworks/WidgetBELLDATA.xaml.cs
Normal file
22
ArcFormats/Cyberworks/WidgetBELLDATA.xaml.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Linq;
|
||||
using System.Windows.Controls;
|
||||
using GameRes.Formats.Cyberworks;
|
||||
using GameRes.Formats.Strings;
|
||||
|
||||
namespace GameRes.Formats.GUI
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for WidgetBELLDATA.xaml
|
||||
/// </summary>
|
||||
public partial class WidgetBELLDATA : StackPanel
|
||||
{
|
||||
public WidgetBELLDATA()
|
||||
{
|
||||
InitializeComponent();
|
||||
var keys = new string[] { arcStrings.ArcIgnoreEncryption };
|
||||
Title.ItemsSource = keys.Concat (DataOpener.KnownSchemes.Keys.OrderBy (x => x));
|
||||
if (-1 == Title.SelectedIndex)
|
||||
Title.SelectedIndex = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user