Files
BingoGrassland/Assets/BingoBrain/FGUI/Package/ZM_Petty/com_account.cs
T

31 lines
920 B
C#
Raw Normal View History

2026-05-09 18:00:33 +08:00
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
using FairyGUI;
using FairyGUI.Utils;
namespace FGUI.ZM_Petty
{
public partial class com_account : GComponent
{
public com_email com_email;
public com_firstName com_first_name;
public com_lastName com_last_name;
public GButton btn_confirm;
public const string URL = "ui://e9w4rbkqkbzo4";
public static com_account CreateInstance()
{
return (com_account)UIPackage.CreateObject("ZM_Petty", "com_account");
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
com_email = (com_email)GetChildAt(4);
com_first_name = (com_firstName)GetChildAt(5);
com_last_name = (com_lastName)GetChildAt(6);
btn_confirm = (GButton)GetChildAt(7);
}
}
}