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

35 lines
1.0 KiB
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 com_task : GComponent
{
public Controller cont_process;
public GTextField text_orderid;
public GTextField text_task_title;
public GTextField text_ads;
2026-05-08 11:03:00 +08:00
public GTextField text_task;
2026-04-20 13:49:36 +08:00
public GTextField text_payer;
2026-05-08 11:03:00 +08:00
public const string URL = "ui://jwedp6jyes171x";
2026-04-20 13:49:36 +08:00
public static com_task CreateInstance()
{
2026-05-08 11:03:00 +08:00
return (com_task)UIPackage.CreateObject("tixian", "com_task");
2026-04-20 13:49:36 +08:00
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
cont_process = GetControllerAt(0);
2026-05-08 11:03:00 +08:00
text_orderid = (GTextField)GetChildAt(4);
text_task_title = (GTextField)GetChildAt(5);
text_ads = (GTextField)GetChildAt(6);
text_task = (GTextField)GetChildAt(7);
text_payer = (GTextField)GetChildAt(16);
2026-04-20 13:49:36 +08:00
}
}
}