1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
- using FairyGUI;
- namespace UI.DailyWelfare
- {
- public partial class UI_NewLimitChargeUI
- {
- public GComponent target;
- public GLoader m_loaBg;
- public GButton m_btnBack;
- public GTextField m_packageName;
- public GTextField m_txtTime;
- public GGroup m_grpTime;
- public GList m_list;
- public GButton m_toRightBtn;
- public GButton m_toLeftBtn;
- public GButton m_btnCharge;
- public const string URL = "ui://t8nwuj7idn9y2h";
- public const string PACKAGE_NAME = "DailyWelfare";
- public const string RES_NAME = "NewLimitChargeUI";
- private static UI_NewLimitChargeUI _proxy;
- public static UI_NewLimitChargeUI Create(GObject gObject = null)
- {
- var ui = new UI_NewLimitChargeUI();
- 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_NewLimitChargeUI Proxy(GObject gObject = null)
- {
- if(_proxy == null)
- {
- _proxy = new UI_NewLimitChargeUI();
- }
- 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_packageName = (GTextField)comp.GetChild("packageName");
- m_txtTime = (GTextField)comp.GetChild("txtTime");
- m_grpTime = (GGroup)comp.GetChild("grpTime");
- m_list = (GList)comp.GetChild("list");
- m_toRightBtn = (GButton)comp.GetChild("toRightBtn");
- m_toLeftBtn = (GButton)comp.GetChild("toLeftBtn");
- m_btnCharge = (GButton)comp.GetChild("btnCharge");
- }
- public void Dispose(bool disposeTarget = false)
- {
- m_loaBg = null;
- m_btnBack = null;
- m_packageName = null;
- m_txtTime = null;
- m_grpTime = null;
- m_list = null;
- m_toRightBtn = null;
- m_toLeftBtn = null;
- m_btnCharge = null;
- if(disposeTarget && target != null)
- {
- target.RemoveFromParent();
- target.Dispose();
- }
- target = null;
- }
- }
- }
|