icon预览和自动生成

This commit is contained in:
Bob.Song
2025-10-28 17:46:08 +08:00
parent af4dbc5cde
commit 7b8c6d5cec
204 changed files with 8454 additions and 174 deletions

View File

@@ -14,9 +14,15 @@ namespace NBF
public override string UIPackName => "Tools";
public override string UIResName => "PreviewPanel";
[AutoFind(Name = "Model")]
public ModelViewer Model;
public override string[] GetDependPackages(){ return new string[] {"Common"}; }
[AutoFind(Name = "ItemList")]
public CommonItemList ItemList;
[AutoFind(Name = "ItemModal")]
public BagItem ItemModal;
[AutoFind(Name = "BtnGenAllIcon")]
public GButton BtnGenAllIcon;
[AutoFind(Name = "GenModel")]
public ModelViewer GenModel;
public override string[] GetDependPackages(){ return new string[] {"Common","Main"}; }
public static void Show(object param = null){ App.UI.OpenUI<PreviewPanel>(param); }