|
@@ -0,0 +1,101 @@
|
|
|
+/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
|
|
+
|
|
|
+using FairyGUI;
|
|
|
+
|
|
|
+namespace UI.League
|
|
|
+{
|
|
|
+ public partial class UI_LeagueTeaPartyOverUI
|
|
|
+ {
|
|
|
+ public GComponent target;
|
|
|
+ public GLoader m_loaBg;
|
|
|
+ public GButton m_btnBack;
|
|
|
+ public GTextField m_txtTeaName;
|
|
|
+ public UI_comTeaPartyOverItem m_TeaPartyOverItem1;
|
|
|
+ public UI_comTeaPartyOverItem m_TeaPartyOverItem3;
|
|
|
+ public UI_comTeaPartyOverItem m_TeaPartyOverItem4;
|
|
|
+ public UI_comTeaPartyOverItem m_TeaPartyOverItem2;
|
|
|
+ public UI_comTeaPartyOverItem m_TeaPartyOverItem5;
|
|
|
+ public UI_comTeaPartyOverItem m_TeaPartyOverItem6;
|
|
|
+ public const string URL = "ui://tw70qm9dic4otq4";
|
|
|
+ public const string PACKAGE_NAME = "League";
|
|
|
+ public const string RES_NAME = "LeagueTeaPartyOverUI";
|
|
|
+ private static UI_LeagueTeaPartyOverUI _proxy;
|
|
|
+
|
|
|
+ public static UI_LeagueTeaPartyOverUI Create(GObject gObject = null)
|
|
|
+ {
|
|
|
+ var ui = new UI_LeagueTeaPartyOverUI();
|
|
|
+ if(gObject == null)
|
|
|
+ ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
|
|
|
+ else
|
|
|
+ ui.target = (GComponent)gObject;
|
|
|
+ ui.Init(ui.target);
|
|
|
+ return ui;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static UI_LeagueTeaPartyOverUI Proxy(GObject gObject = null)
|
|
|
+ {
|
|
|
+ if(_proxy == null)
|
|
|
+ {
|
|
|
+ _proxy = new UI_LeagueTeaPartyOverUI();
|
|
|
+ }
|
|
|
+ var ui = _proxy;
|
|
|
+ if(gObject == null)
|
|
|
+ ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
|
|
|
+ else
|
|
|
+ ui.target = (GComponent)gObject;
|
|
|
+ ui.Init(ui.target);
|
|
|
+ return ui;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void ProxyEnd()
|
|
|
+ {
|
|
|
+ if (_proxy != null)
|
|
|
+ {
|
|
|
+ _proxy.Dispose();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void ClearProxy()
|
|
|
+ {
|
|
|
+ ProxyEnd();
|
|
|
+ _proxy = null;
|
|
|
+ }
|
|
|
+
|
|
|
+ private void Init(GComponent comp)
|
|
|
+ {
|
|
|
+ m_loaBg = (GLoader)comp.GetChild("loaBg");
|
|
|
+ m_btnBack = (GButton)comp.GetChild("btnBack");
|
|
|
+ m_txtTeaName = (GTextField)comp.GetChild("txtTeaName");
|
|
|
+ m_TeaPartyOverItem1 = (UI_comTeaPartyOverItem)UI_comTeaPartyOverItem.Create(comp.GetChild("TeaPartyOverItem1"));
|
|
|
+ m_TeaPartyOverItem3 = (UI_comTeaPartyOverItem)UI_comTeaPartyOverItem.Create(comp.GetChild("TeaPartyOverItem3"));
|
|
|
+ m_TeaPartyOverItem4 = (UI_comTeaPartyOverItem)UI_comTeaPartyOverItem.Create(comp.GetChild("TeaPartyOverItem4"));
|
|
|
+ m_TeaPartyOverItem2 = (UI_comTeaPartyOverItem)UI_comTeaPartyOverItem.Create(comp.GetChild("TeaPartyOverItem2"));
|
|
|
+ m_TeaPartyOverItem5 = (UI_comTeaPartyOverItem)UI_comTeaPartyOverItem.Create(comp.GetChild("TeaPartyOverItem5"));
|
|
|
+ m_TeaPartyOverItem6 = (UI_comTeaPartyOverItem)UI_comTeaPartyOverItem.Create(comp.GetChild("TeaPartyOverItem6"));
|
|
|
+ }
|
|
|
+ public void Dispose(bool disposeTarget = false)
|
|
|
+ {
|
|
|
+ m_loaBg = null;
|
|
|
+ m_btnBack = null;
|
|
|
+ m_txtTeaName = null;
|
|
|
+ m_TeaPartyOverItem1.Dispose();
|
|
|
+ m_TeaPartyOverItem1 = null;
|
|
|
+ m_TeaPartyOverItem3.Dispose();
|
|
|
+ m_TeaPartyOverItem3 = null;
|
|
|
+ m_TeaPartyOverItem4.Dispose();
|
|
|
+ m_TeaPartyOverItem4 = null;
|
|
|
+ m_TeaPartyOverItem2.Dispose();
|
|
|
+ m_TeaPartyOverItem2 = null;
|
|
|
+ m_TeaPartyOverItem5.Dispose();
|
|
|
+ m_TeaPartyOverItem5 = null;
|
|
|
+ m_TeaPartyOverItem6.Dispose();
|
|
|
+ m_TeaPartyOverItem6 = null;
|
|
|
+ if(disposeTarget && target != null)
|
|
|
+ {
|
|
|
+ target.RemoveFromParent();
|
|
|
+ target.Dispose();
|
|
|
+ }
|
|
|
+ target = null;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|