33 lines
948 B
C#
33 lines
948 B
C#
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
|||
|
|
|
||
|
|
using FairyGUI;
|
||
|
|
using FairyGUI.Utils;
|
||
|
|
|
||
|
|
namespace FGUI.P04_Menu
|
||
|
|
{
|
||
|
|
public partial class com_person : GComponent
|
||
|
|
{
|
||
|
|
public GButton btn_update;
|
||
|
|
public com_edit_name edit_name;
|
||
|
|
public GList list;
|
||
|
|
public GTextField title;
|
||
|
|
public GButton btn_close;
|
||
|
|
public const string URL = "ui://8rcjs2ucsebxf";
|
||
|
|
|
||
|
|
public static com_person CreateInstance()
|
||
|
|
{
|
||
|
|
return (com_person)UIPackage.CreateObject("P04_Menu", "com_person");
|
||
|
|
}
|
||
|
|
|
||
|
|
public override void ConstructFromXML(XML xml)
|
||
|
|
{
|
||
|
|
base.ConstructFromXML(xml);
|
||
|
|
|
||
|
|
btn_update = (GButton)GetChildAt(1);
|
||
|
|
edit_name = (com_edit_name)GetChildAt(2);
|
||
|
|
list = (GList)GetChildAt(4);
|
||
|
|
title = (GTextField)GetChildAt(5);
|
||
|
|
btn_close = (GButton)GetChildAt(6);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|