| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.MiniGame{    public partial class UI_ChallengeRewardItemUI    {        public GComponent target;        public GLoader m_bg;        public GTextField m_rewardDesc;        public UI_Button7 m_getBtn;        public GList m_rewardList;        public const string URL = "ui://wgkh30qjlw8c24";        public const string PACKAGE_NAME = "MiniGame";        public const string RES_NAME = "ChallengeRewardItemUI";        private static UI_ChallengeRewardItemUI _proxy;        public static UI_ChallengeRewardItemUI Create(GObject gObject = null)        {            var ui = new UI_ChallengeRewardItemUI();            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_ChallengeRewardItemUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_ChallengeRewardItemUI();            }            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_bg = (GLoader)comp.GetChild("bg");            m_rewardDesc = (GTextField)comp.GetChild("rewardDesc");            m_getBtn = (UI_Button7)UI_Button7.Create(comp.GetChild("getBtn"));            m_rewardList = (GList)comp.GetChild("rewardList");        }        public void Dispose(bool disposeTarget = false)        {            m_bg = null;            m_rewardDesc = null;            m_getBtn.Dispose();            m_getBtn = null;            m_rewardList = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |