35 lines
1.0 KiB
C#
35 lines
1.0 KiB
C#
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
|||
|
|
|
||
|
|
using FairyGUI;
|
||
|
|
using FairyGUI.Utils;
|
||
|
|
|
||
|
|
namespace FGUI.rank
|
||
|
|
{
|
||
|
|
public partial class rank_item : GComponent
|
||
|
|
{
|
||
|
|
public Controller mode;
|
||
|
|
public GButton btn_head;
|
||
|
|
public GTextField lab_rank;
|
||
|
|
public GTextField lab_points;
|
||
|
|
public GTextField lab_pot;
|
||
|
|
public GTextField lab_name;
|
||
|
|
public const string URL = "ui://edhx114fiec45";
|
||
|
|
|
||
|
|
public static rank_item CreateInstance()
|
||
|
|
{
|
||
|
|
return (rank_item)UIPackage.CreateObject("rank", "rank_item");
|
||
|
|
}
|
||
|
|
|
||
|
|
public override void ConstructFromXML(XML xml)
|
||
|
|
{
|
||
|
|
base.ConstructFromXML(xml);
|
||
|
|
|
||
|
|
mode = GetControllerAt(0);
|
||
|
|
btn_head = (GButton)GetChildAt(2);
|
||
|
|
lab_rank = (GTextField)GetChildAt(3);
|
||
|
|
lab_points = (GTextField)GetChildAt(4);
|
||
|
|
lab_pot = (GTextField)GetChildAt(5);
|
||
|
|
lab_name = (GTextField)GetChildAt(6);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|