/** This is an automatically generated class by FairyGUI. Please do not modify it. **/ using FairyGUI; namespace UI.DailyWelfare { public partial class UI_DailySignRechargeTipsUI { public GComponent target; public GTextField m_txtTitle; public GTextField m_txtTips; public GComponent m_comCostItem; public GButton m_btnConfirm; public GButton m_btnCancel; public const string URL = "ui://t8nwuj7ihtuj93b"; public const string PACKAGE_NAME = "DailyWelfare"; public const string RES_NAME = "DailySignRechargeTipsUI"; private static UI_DailySignRechargeTipsUI _proxy; public static UI_DailySignRechargeTipsUI Create(GObject gObject = null) { var ui = new UI_DailySignRechargeTipsUI(); 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_DailySignRechargeTipsUI Proxy(GObject gObject = null) { if(_proxy == null) { _proxy = new UI_DailySignRechargeTipsUI(); } 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_txtTitle = (GTextField)comp.GetChild("txtTitle"); m_txtTips = (GTextField)comp.GetChild("txtTips"); m_comCostItem = (GComponent)comp.GetChild("comCostItem"); m_btnConfirm = (GButton)comp.GetChild("btnConfirm"); m_btnCancel = (GButton)comp.GetChild("btnCancel"); } public void Dispose(bool disposeTarget = false) { m_txtTitle = null; m_txtTips = null; m_comCostItem = null; m_btnConfirm = null; m_btnCancel = null; if(disposeTarget && target != null) { target.RemoveFromParent(); target.Dispose(); } target = null; } } }