Files
BingoGrassland/Assets/BingoBrain/FGUI/Package/tixian/btn_top.cs
T

33 lines
932 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;
2026-05-08 11:03:00 +08:00
namespace FGUI.tixian
2026-04-20 13:49:36 +08:00
{
public partial class btn_top : GButton
{
public Controller index;
public Controller btn_state;
public GTextField text_type;
2026-05-08 11:03:00 +08:00
public GTextField text_ch;
2026-04-20 13:49:36 +08:00
public GImage img_outline;
2026-05-08 11:03:00 +08:00
public const string URL = "ui://jwedp6jyupx71r";
2026-04-20 13:49:36 +08:00
public static btn_top CreateInstance()
{
2026-05-08 11:03:00 +08:00
return (btn_top)UIPackage.CreateObject("tixian", "btn_top");
2026-04-20 13:49:36 +08:00
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
index = GetControllerAt(0);
btn_state = GetControllerAt(1);
2026-05-08 11:03:00 +08:00
text_type = (GTextField)GetChildAt(5);
text_ch = (GTextField)GetChildAt(6);
img_outline = (GImage)GetChildAt(7);
2026-04-20 13:49:36 +08:00
}
}
}