add image format support for CSystem when there is Resources subdirectory And update database

This commit is contained in:
ichiNose
2025-04-19 11:47:58 +08:00
parent 76932deea3
commit f225e57b22
8 changed files with 624 additions and 4 deletions

View 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;
}
}
}