fix:1、添加项目
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
/** 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user