fix:1、添加项目
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.P21_MailView
|
||||
{
|
||||
public partial class mail_item : GComponent
|
||||
{
|
||||
public Controller status;
|
||||
public GTextField title;
|
||||
public GTextField text_time;
|
||||
public GTextField text_content;
|
||||
public const string URL = "ui://oi9nwct7gb0v3";
|
||||
|
||||
public static mail_item CreateInstance()
|
||||
{
|
||||
return (mail_item)UIPackage.CreateObject("P21_MailView", "mail_item");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
status = GetControllerAt(0);
|
||||
title = (GTextField)GetChildAt(2);
|
||||
text_time = (GTextField)GetChildAt(3);
|
||||
text_content = (GTextField)GetChildAt(6);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user