123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
- using FairyGUI;
- namespace UI.TimeTracing
- {
- public partial class UI_TimeTracingLevelRankUI
- {
- public GComponent target;
- public Controller m_c1;
- public GLoader m_btnBack;
- public GButton m_btn0;
- public GButton m_btn1;
- public GList m_listRank;
- public GTextField m_txtTips;
- public GTextField m_timeText;
- public UI_TimeTracingLevelRankItem m_myRank;
- public GLoader m_rulerBtn;
- public const string URL = "ui://gayfh946l8151f";
- public const string PACKAGE_NAME = "TimeTracing";
- public const string RES_NAME = "TimeTracingLevelRankUI";
- private static UI_TimeTracingLevelRankUI _proxy;
- public static UI_TimeTracingLevelRankUI Create(GObject gObject = null)
- {
- var ui = new UI_TimeTracingLevelRankUI();
- 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_TimeTracingLevelRankUI Proxy(GObject gObject = null)
- {
- if(_proxy == null)
- {
- _proxy = new UI_TimeTracingLevelRankUI();
- }
- 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_c1 = comp.GetController("c1");
- m_btnBack = (GLoader)comp.GetChild("btnBack");
- m_btn0 = (GButton)comp.GetChild("btn0");
- m_btn1 = (GButton)comp.GetChild("btn1");
- m_listRank = (GList)comp.GetChild("listRank");
- m_txtTips = (GTextField)comp.GetChild("txtTips");
- m_timeText = (GTextField)comp.GetChild("timeText");
- m_myRank = (UI_TimeTracingLevelRankItem)UI_TimeTracingLevelRankItem.Create(comp.GetChild("myRank"));
- m_rulerBtn = (GLoader)comp.GetChild("rulerBtn");
- }
- public void Dispose(bool disposeTarget = false)
- {
- m_c1 = null;
- m_btnBack = null;
- m_btn0 = null;
- m_btn1 = null;
- m_listRank = null;
- m_txtTips = null;
- m_timeText = null;
- m_myRank.Dispose();
- m_myRank = null;
- m_rulerBtn = null;
- if(disposeTarget && target != null)
- {
- target.RemoveFromParent();
- target.Dispose();
- }
- target = null;
- }
- }
- }
|