29 lines
788 B
C#
29 lines
788 B
C#
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
|||
|
|
|
||
|
|
using FairyGUI;
|
||
|
|
using FairyGUI.Utils;
|
||
|
|
|
||
|
|
namespace FGUI.PC_privacy
|
||
|
|
{
|
||
|
|
public partial class com_privacy : GComponent
|
||
|
|
{
|
||
|
|
public GButton btn_close;
|
||
|
|
public GTextField title;
|
||
|
|
public GList text_list;
|
||
|
|
public const string URL = "ui://i1rpsfynq8uc0";
|
||
|
|
|
||
|
|
public static com_privacy CreateInstance()
|
||
|
|
{
|
||
|
|
return (com_privacy)UIPackage.CreateObject("PC_privacy", "com_privacy");
|
||
|
|
}
|
||
|
|
|
||
|
|
public override void ConstructFromXML(XML xml)
|
||
|
|
{
|
||
|
|
base.ConstructFromXML(xml);
|
||
|
|
|
||
|
|
btn_close = (GButton)GetChildAt(1);
|
||
|
|
title = (GTextField)GetChildAt(2);
|
||
|
|
text_list = (GList)GetChildAt(3);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|