| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.EnduringGiftBox{    public partial class UI_EnduringGiftBoxUI    {        public GComponent target;        public GGraph m_holderPaoMax;        public GGraph m_holderPaoMin;        public GGraph m_holderBaby;        public GGraph m_holderFg;        public GTextField m_txtNeed;        public GTextField m_txtNum;        public GButton m_btnCancel;        public GButton m_btnSure;        public GTextField m_txtPromptExt;        public GList m_list;        public GComponent m_btnBack;        public Transition m_t1;        public Transition m_t2;        public Transition m_t3;        public const string URL = "ui://bdi1qe15qqhz1";        public const string PACKAGE_NAME = "EnduringGiftBox";        public const string RES_NAME = "EnduringGiftBoxUI";        private static UI_EnduringGiftBoxUI _proxy;        public static UI_EnduringGiftBoxUI Create(GObject gObject = null)        {            var ui = new UI_EnduringGiftBoxUI();            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_EnduringGiftBoxUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_EnduringGiftBoxUI();            }            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_holderPaoMax = (GGraph)comp.GetChild("holderPaoMax");            m_holderPaoMin = (GGraph)comp.GetChild("holderPaoMin");            m_holderBaby = (GGraph)comp.GetChild("holderBaby");            m_holderFg = (GGraph)comp.GetChild("holderFg");            m_txtNeed = (GTextField)comp.GetChild("txtNeed");            m_txtNum = (GTextField)comp.GetChild("txtNum");            m_btnCancel = (GButton)comp.GetChild("btnCancel");            m_btnSure = (GButton)comp.GetChild("btnSure");            m_txtPromptExt = (GTextField)comp.GetChild("txtPromptExt");            m_list = (GList)comp.GetChild("list");            m_btnBack = (GComponent)comp.GetChild("btnBack");            m_t1 = comp.GetTransition("t1");            m_t2 = comp.GetTransition("t2");            m_t3 = comp.GetTransition("t3");        }        public void Dispose(bool disposeTarget = false)        {            m_holderPaoMax = null;            m_holderPaoMin = null;            m_holderBaby = null;            m_holderFg = null;            m_txtNeed = null;            m_txtNum = null;            m_btnCancel = null;            m_btnSure = null;            m_txtPromptExt = null;            m_list = null;            m_btnBack = null;            m_t1 = null;            m_t2 = null;            m_t3 = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |