| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.ClothingFoster{    public partial class UI_SuitFosterFinishUI    {        public GComponent target;        public GLoader m_bg;        public GTextField m_txtRenewTips;        public GGroup m_grpRenew;        public GImage m_img;        public GComponent m_comProperty0;        public GComponent m_comProperty1;        public GComponent m_comProperty2;        public GComponent m_comProperty3;        public GGroup m_grpProperty;        public GComponent m_comAddProperty0;        public GComponent m_comAddProperty1;        public GComponent m_comAddProperty2;        public GComponent m_comAddProperty3;        public GGroup m_grpAddProperty;        public Transition m_t0;        public Transition m_t1;        public const string URL = "ui://uicwtr5bpy5gs";        public const string PACKAGE_NAME = "ClothingFoster";        public const string RES_NAME = "SuitFosterFinishUI";        private static UI_SuitFosterFinishUI _proxy;        public static UI_SuitFosterFinishUI Create(GObject gObject = null)        {            var ui = new UI_SuitFosterFinishUI();            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_SuitFosterFinishUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_SuitFosterFinishUI();            }            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_txtRenewTips = (GTextField)comp.GetChild("txtRenewTips");            m_grpRenew = (GGroup)comp.GetChild("grpRenew");            m_img = (GImage)comp.GetChild("img");            m_comProperty0 = (GComponent)comp.GetChild("comProperty0");            m_comProperty1 = (GComponent)comp.GetChild("comProperty1");            m_comProperty2 = (GComponent)comp.GetChild("comProperty2");            m_comProperty3 = (GComponent)comp.GetChild("comProperty3");            m_grpProperty = (GGroup)comp.GetChild("grpProperty");            m_comAddProperty0 = (GComponent)comp.GetChild("comAddProperty0");            m_comAddProperty1 = (GComponent)comp.GetChild("comAddProperty1");            m_comAddProperty2 = (GComponent)comp.GetChild("comAddProperty2");            m_comAddProperty3 = (GComponent)comp.GetChild("comAddProperty3");            m_grpAddProperty = (GGroup)comp.GetChild("grpAddProperty");            m_t0 = comp.GetTransition("t0");            m_t1 = comp.GetTransition("t1");        }        public void Dispose(bool disposeTarget = false)        {            m_bg = null;            m_txtRenewTips = null;            m_grpRenew = null;            m_img = null;            m_comProperty0 = null;            m_comProperty1 = null;            m_comProperty2 = null;            m_comProperty3 = null;            m_grpProperty = null;            m_comAddProperty0 = null;            m_comAddProperty1 = null;            m_comAddProperty2 = null;            m_comAddProperty3 = null;            m_grpAddProperty = null;            m_t0 = null;            m_t1 = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |