| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.League{    public partial class UI_LeagueMemberUI    {        public GComponent target;        public Controller m_c1;        public GLoader m_loaBg;        public GButton m_btnBack;        public UI_ComLeader m_comChairman;        public UI_ComLeader m_comCoChairman;        public GList m_list;        public UI_Button14 m_btnRecruit;        public GButton m_btnApplyList;        public GButton m_btnMemberLog;        public GButton m_btnExit;        public GButton m_btnExit1;        public const string URL = "ui://tw70qm9du2u35";        public const string PACKAGE_NAME = "League";        public const string RES_NAME = "LeagueMemberUI";        private static UI_LeagueMemberUI _proxy;        public static UI_LeagueMemberUI Create(GObject gObject = null)        {            var ui = new UI_LeagueMemberUI();            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_LeagueMemberUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_LeagueMemberUI();            }            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_c1 = comp.GetController("c1");            m_loaBg = (GLoader)comp.GetChild("loaBg");            m_btnBack = (GButton)comp.GetChild("btnBack");            m_comChairman = (UI_ComLeader)UI_ComLeader.Create(comp.GetChild("comChairman"));            m_comCoChairman = (UI_ComLeader)UI_ComLeader.Create(comp.GetChild("comCoChairman"));            m_list = (GList)comp.GetChild("list");            m_btnRecruit = (UI_Button14)UI_Button14.Create(comp.GetChild("btnRecruit"));            m_btnApplyList = (GButton)comp.GetChild("btnApplyList");            m_btnMemberLog = (GButton)comp.GetChild("btnMemberLog");            m_btnExit = (GButton)comp.GetChild("btnExit");            m_btnExit1 = (GButton)comp.GetChild("btnExit1");        }        public void Dispose(bool disposeTarget = false)        {            m_c1 = null;            m_loaBg = null;            m_btnBack = null;            m_comChairman.Dispose();            m_comChairman = null;            m_comCoChairman.Dispose();            m_comCoChairman = null;            m_list = null;            m_btnRecruit.Dispose();            m_btnRecruit = null;            m_btnApplyList = null;            m_btnMemberLog = null;            m_btnExit = null;            m_btnExit1 = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |