| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.Studio{    public partial class UI_StudioFilingUI    {        public GComponent target;        public Controller m_type;        public GLoader m_loaBg;        public GComponent m_comValueBar;        public GButton m_btnBack;        public GButton m_btnChange;        public GLoader m_btnChageLine;        public GLoader m_role;        public GList m_list;        public GButton m_btnReward;        public GButton m_btnSuit;        public GTextField m_txtSuitName;        public GTextField m_txtSuitProgress;        public GLoader m_suitIcon;        public GTextField m_activityTipText;        public GTextField m_txtNum;        public GButton m_btnAdd;        public const string URL = "ui://xz8kxrecrqo41i";        public const string PACKAGE_NAME = "Studio";        public const string RES_NAME = "StudioFilingUI";        private static UI_StudioFilingUI _proxy;        public static UI_StudioFilingUI Create(GObject gObject = null)        {            var ui = new UI_StudioFilingUI();            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_StudioFilingUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_StudioFilingUI();            }            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_type = comp.GetController("type");            m_loaBg = (GLoader)comp.GetChild("loaBg");            m_comValueBar = (GComponent)comp.GetChild("comValueBar");            m_btnBack = (GButton)comp.GetChild("btnBack");            m_btnChange = (GButton)comp.GetChild("btnChange");            m_btnChageLine = (GLoader)comp.GetChild("btnChageLine");            m_role = (GLoader)comp.GetChild("role");            m_list = (GList)comp.GetChild("list");            m_btnReward = (GButton)comp.GetChild("btnReward");            m_btnSuit = (GButton)comp.GetChild("btnSuit");            m_txtSuitName = (GTextField)comp.GetChild("txtSuitName");            m_txtSuitProgress = (GTextField)comp.GetChild("txtSuitProgress");            m_suitIcon = (GLoader)comp.GetChild("suitIcon");            m_activityTipText = (GTextField)comp.GetChild("activityTipText");            m_txtNum = (GTextField)comp.GetChild("txtNum");            m_btnAdd = (GButton)comp.GetChild("btnAdd");        }        public void Dispose(bool disposeTarget = false)        {            m_type = null;            m_loaBg = null;            m_comValueBar = null;            m_btnBack = null;            m_btnChange = null;            m_btnChageLine = null;            m_role = null;            m_list = null;            m_btnReward = null;            m_btnSuit = null;            m_txtSuitName = null;            m_txtSuitProgress = null;            m_suitIcon = null;            m_activityTipText = null;            m_txtNum = null;            m_btnAdd = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |