| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.MiniGame{    public partial class UI_TZFEGameCheckUI    {        public GComponent target;        public GLoader m_backBtn;        public GLoader m_bg;        public GLoader m_gameBg1;        public GTextField m_gameTitle1;        public GLoader m_game1;        public GLoader m_newGame1;        public GLoader m_needIcon1;        public GTextField m_needNum1;        public GLoader m_gameLock1;        public GLoader m_gameBg2;        public GTextField m_gameTitle2;        public GLoader m_game2;        public GLoader m_newGame2;        public GLoader m_gameLock2;        public GLoader m_needIcon2;        public GTextField m_needNum2;        public GLoader m_gameBg3;        public GTextField m_gameTitle3;        public GLoader m_game3;        public GLoader m_newGame3;        public GLoader m_gameLock3;        public GLoader m_needIcon3;        public GTextField m_needNum3;        public GLoader m_tipsOne;        public const string URL = "ui://wgkh30qjnjon2n";        public const string PACKAGE_NAME = "MiniGame";        public const string RES_NAME = "TZFEGameCheckUI";        private static UI_TZFEGameCheckUI _proxy;        public static UI_TZFEGameCheckUI Create(GObject gObject = null)        {            var ui = new UI_TZFEGameCheckUI();            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_TZFEGameCheckUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_TZFEGameCheckUI();            }            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_backBtn = (GLoader)comp.GetChild("backBtn");            m_bg = (GLoader)comp.GetChild("bg");            m_gameBg1 = (GLoader)comp.GetChild("gameBg1");            m_gameTitle1 = (GTextField)comp.GetChild("gameTitle1");            m_game1 = (GLoader)comp.GetChild("game1");            m_newGame1 = (GLoader)comp.GetChild("newGame1");            m_needIcon1 = (GLoader)comp.GetChild("needIcon1");            m_needNum1 = (GTextField)comp.GetChild("needNum1");            m_gameLock1 = (GLoader)comp.GetChild("gameLock1");            m_gameBg2 = (GLoader)comp.GetChild("gameBg2");            m_gameTitle2 = (GTextField)comp.GetChild("gameTitle2");            m_game2 = (GLoader)comp.GetChild("game2");            m_newGame2 = (GLoader)comp.GetChild("newGame2");            m_gameLock2 = (GLoader)comp.GetChild("gameLock2");            m_needIcon2 = (GLoader)comp.GetChild("needIcon2");            m_needNum2 = (GTextField)comp.GetChild("needNum2");            m_gameBg3 = (GLoader)comp.GetChild("gameBg3");            m_gameTitle3 = (GTextField)comp.GetChild("gameTitle3");            m_game3 = (GLoader)comp.GetChild("game3");            m_newGame3 = (GLoader)comp.GetChild("newGame3");            m_gameLock3 = (GLoader)comp.GetChild("gameLock3");            m_needIcon3 = (GLoader)comp.GetChild("needIcon3");            m_needNum3 = (GTextField)comp.GetChild("needNum3");            m_tipsOne = (GLoader)comp.GetChild("tipsOne");        }        public void Dispose(bool disposeTarget = false)        {            m_backBtn = null;            m_bg = null;            m_gameBg1 = null;            m_gameTitle1 = null;            m_game1 = null;            m_newGame1 = null;            m_needIcon1 = null;            m_needNum1 = null;            m_gameLock1 = null;            m_gameBg2 = null;            m_gameTitle2 = null;            m_game2 = null;            m_newGame2 = null;            m_gameLock2 = null;            m_needIcon2 = null;            m_needNum2 = null;            m_gameBg3 = null;            m_gameTitle3 = null;            m_game3 = null;            m_newGame3 = null;            m_gameLock3 = null;            m_needIcon3 = null;            m_needNum3 = null;            m_tipsOne = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |