33 lines
967 B
C#
33 lines
967 B
C#
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
|
|
|
using FairyGUI;
|
|
using FairyGUI.Utils;
|
|
|
|
namespace FGUI.G007_makeup
|
|
{
|
|
public partial class com_info : GComponent
|
|
{
|
|
public Controller cont_counrty;
|
|
public GTextField text_name;
|
|
public GTextField text_email;
|
|
public GButton btn_change;
|
|
public GButton btn_menu;
|
|
public const string URL = "ui://md8tkwlzif1eb";
|
|
|
|
public static com_info CreateInstance()
|
|
{
|
|
return (com_info)UIPackage.CreateObject("G007_makeup", "com_info");
|
|
}
|
|
|
|
public override void ConstructFromXML(XML xml)
|
|
{
|
|
base.ConstructFromXML(xml);
|
|
|
|
cont_counrty = GetControllerAt(0);
|
|
text_name = (GTextField)GetChildAt(0);
|
|
text_email = (GTextField)GetChildAt(1);
|
|
btn_change = (GButton)GetChildAt(2);
|
|
btn_menu = (GButton)GetChildAt(5);
|
|
}
|
|
}
|
|
} |