Files
BingoGrassland/Assets/BingoBrain/FGUI/Package/bkg_jilu/com_jilu.cs
T

31 lines
848 B
C#
Raw Normal View History

2026-04-20 13:49:36 +08:00
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
using FairyGUI;
using FairyGUI.Utils;
namespace FGUI.bkg_jilu
{
public partial class com_jilu : GComponent
{
public GTextField txt_title;
2026-05-08 11:03:00 +08:00
public GButton btn_close;
public GList list;
public com_panel panel;
public const string URL = "ui://jsjnplk3f6p00";
2026-04-20 13:49:36 +08:00
public static com_jilu CreateInstance()
{
return (com_jilu)UIPackage.CreateObject("bkg_jilu", "com_jilu");
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
2026-05-08 11:03:00 +08:00
txt_title = (GTextField)GetChildAt(2);
2026-04-20 13:49:36 +08:00
btn_close = (GButton)GetChildAt(3);
2026-05-08 11:03:00 +08:00
list = (GList)GetChildAt(4);
panel = (com_panel)GetChildAt(5);
2026-04-20 13:49:36 +08:00
}
}
}