| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.ActivityMain{    public partial class UI_PearlRebateTipsUI    {        public GComponent target;        public Controller m_c1;        public GTextField m_timeText;        public UI_Button11 m_one;        public UI_Btn18 m_two;        public UI_btn30 m_three;        public GComponent m_item0;        public GComponent m_item1;        public GComponent m_item2;        public UI_Button10 m_buyBtn;        public UI_Button14 m_gotbtn;        public GLoader m_backBtn;        public GImage m_TipImg;        public GLoader m_notTips;        public GGraph m_effectBtn;        public GGraph m_effectBG;        public Transition m_t0;        public Transition m_t1;        public Transition m_t4;        public const string URL = "ui://4ht5s77u7xo51s";        public const string PACKAGE_NAME = "ActivityMain";        public const string RES_NAME = "PearlRebateTipsUI";        private static UI_PearlRebateTipsUI _proxy;        public static UI_PearlRebateTipsUI Create(GObject gObject = null)        {            var ui = new UI_PearlRebateTipsUI();            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_PearlRebateTipsUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_PearlRebateTipsUI();            }            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_timeText = (GTextField)comp.GetChild("timeText");            m_one = (UI_Button11)UI_Button11.Create(comp.GetChild("one"));            m_two = (UI_Btn18)UI_Btn18.Create(comp.GetChild("two"));            m_three = (UI_btn30)UI_btn30.Create(comp.GetChild("three"));            m_item0 = (GComponent)comp.GetChild("item0");            m_item1 = (GComponent)comp.GetChild("item1");            m_item2 = (GComponent)comp.GetChild("item2");            m_buyBtn = (UI_Button10)UI_Button10.Create(comp.GetChild("buyBtn"));            m_gotbtn = (UI_Button14)UI_Button14.Create(comp.GetChild("gotbtn"));            m_backBtn = (GLoader)comp.GetChild("backBtn");            m_TipImg = (GImage)comp.GetChild("TipImg");            m_notTips = (GLoader)comp.GetChild("notTips");            m_effectBtn = (GGraph)comp.GetChild("effectBtn");            m_effectBG = (GGraph)comp.GetChild("effectBG");            m_t0 = comp.GetTransition("t0");            m_t1 = comp.GetTransition("t1");            m_t4 = comp.GetTransition("t4");        }        public void Dispose(bool disposeTarget = false)        {            m_c1 = null;            m_timeText = null;            m_one.Dispose();            m_one = null;            m_two.Dispose();            m_two = null;            m_three.Dispose();            m_three = null;            m_item0 = null;            m_item1 = null;            m_item2 = null;            m_buyBtn.Dispose();            m_buyBtn = null;            m_gotbtn.Dispose();            m_gotbtn = null;            m_backBtn = null;            m_TipImg = null;            m_notTips = null;            m_effectBtn = null;            m_effectBG = null;            m_t0 = null;            m_t1 = null;            m_t4 = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |