| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.CardSynthetic{    public partial class UI_CardSyntheticUI    {        public GComponent target;        public GLoader m_loaBg;        public GLoader m_loaBg2;        public UI_ComImgCard m_comImgCard;        public GList m_listMaterias;        public GButton m_btnProduction;        public GComponent m_comCostCurrency;        public GTextField m_txtGong;        public GTextField m_txtShang;        public GTextField m_txtJue;        public GTextField m_txtZhi;        public GLoader m_loaRarity;        public GTextField m_txtName0;        public GTextField m_txtName1;        public GTextField m_txtName2;        public GTextField m_txtName3;        public GTextField m_txtName4;        public GButton m_btnBack;        public GButton m_btnHome;        public GComponent m_valueBar;        public Transition m_hide;        public Transition m_show;        public const string URL = "ui://c6tzok8ouje12n";        public const string PACKAGE_NAME = "CardSynthetic";        public const string RES_NAME = "CardSyntheticUI";        private static UI_CardSyntheticUI _proxy;        public static UI_CardSyntheticUI Create(GObject gObject = null)        {            var ui = new UI_CardSyntheticUI();            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_CardSyntheticUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_CardSyntheticUI();            }            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_loaBg = (GLoader)comp.GetChild("loaBg");            m_loaBg2 = (GLoader)comp.GetChild("loaBg2");            m_comImgCard = (UI_ComImgCard)UI_ComImgCard.Create(comp.GetChild("comImgCard"));            m_listMaterias = (GList)comp.GetChild("listMaterias");            m_btnProduction = (GButton)comp.GetChild("btnProduction");            m_comCostCurrency = (GComponent)comp.GetChild("comCostCurrency");            m_txtGong = (GTextField)comp.GetChild("txtGong");            m_txtShang = (GTextField)comp.GetChild("txtShang");            m_txtJue = (GTextField)comp.GetChild("txtJue");            m_txtZhi = (GTextField)comp.GetChild("txtZhi");            m_loaRarity = (GLoader)comp.GetChild("loaRarity");            m_txtName0 = (GTextField)comp.GetChild("txtName0");            m_txtName1 = (GTextField)comp.GetChild("txtName1");            m_txtName2 = (GTextField)comp.GetChild("txtName2");            m_txtName3 = (GTextField)comp.GetChild("txtName3");            m_txtName4 = (GTextField)comp.GetChild("txtName4");            m_btnBack = (GButton)comp.GetChild("btnBack");            m_btnHome = (GButton)comp.GetChild("btnHome");            m_valueBar = (GComponent)comp.GetChild("valueBar");            m_hide = comp.GetTransition("hide");            m_show = comp.GetTransition("show");        }        public void Dispose(bool disposeTarget = false)        {            m_loaBg = null;            m_loaBg2 = null;            m_comImgCard.Dispose();            m_comImgCard = null;            m_listMaterias = null;            m_btnProduction = null;            m_comCostCurrency = null;            m_txtGong = null;            m_txtShang = null;            m_txtJue = null;            m_txtZhi = null;            m_loaRarity = null;            m_txtName0 = null;            m_txtName1 = null;            m_txtName2 = null;            m_txtName3 = null;            m_txtName4 = null;            m_btnBack = null;            m_btnHome = null;            m_valueBar = null;            m_hide = null;            m_show = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |