31 lines
881 B
C#
31 lines
881 B
C#
/** 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);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|