| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.RoleInfo{    public partial class UI_ComBtn    {        public GComponent target;        public Controller m_c1;        public GButton m_btnAll;        public GButton m_btnWealth;        public GButton m_btnCardMaterials;        public GButton m_btnGetAllDressUpItem;        public GButton m_btnGetAllCardItem;        public GButton m_btnSetLv;        public GTextInput m_txtRoleLv;        public GButton m_btnSetChapter;        public GTextInput m_txtChapter;        public GTextInput m_txtChapterLv;        public GButton m_btnGetSuit;        public GTextInput m_txtSuitId;        public GButton m_btnAnswerStart;        public GButton m_btnAnswerEnd;        public GButton m_btnAnswerActiveEnd;        public GButton m_btnArenaGrade;        public GTextInput m_txtArenaGrade;        public GTextInput m_txtArenaRank;        public GButton m_btnLeagueSkill;        public GTextInput m_txtskillType;        public GButton m_btnMaxFightSpeed;        public GButton m_btnAddLeagueNum;        public GTextInput m_AddLeagueNumType;        public GTextInput m_AddNum;        public GButton m_btnSetLeaguNum;        public GTextInput m_SetLeagueNumType;        public GTextInput m_SetNum;        public GButton m_btnTeaPartyStart;        public const string URL = "ui://374k3dwvlqp0dm";        public const string PACKAGE_NAME = "RoleInfo";        public const string RES_NAME = "ComBtn";        private static UI_ComBtn _proxy;        public static UI_ComBtn Create(GObject gObject = null)        {            var ui = new UI_ComBtn();            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_ComBtn Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_ComBtn();            }            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_btnAll = (GButton)comp.GetChild("btnAll");            m_btnWealth = (GButton)comp.GetChild("btnWealth");            m_btnCardMaterials = (GButton)comp.GetChild("btnCardMaterials");            m_btnGetAllDressUpItem = (GButton)comp.GetChild("btnGetAllDressUpItem");            m_btnGetAllCardItem = (GButton)comp.GetChild("btnGetAllCardItem");            m_btnSetLv = (GButton)comp.GetChild("btnSetLv");            m_txtRoleLv = (GTextInput)comp.GetChild("txtRoleLv");            m_btnSetChapter = (GButton)comp.GetChild("btnSetChapter");            m_txtChapter = (GTextInput)comp.GetChild("txtChapter");            m_txtChapterLv = (GTextInput)comp.GetChild("txtChapterLv");            m_btnGetSuit = (GButton)comp.GetChild("btnGetSuit");            m_txtSuitId = (GTextInput)comp.GetChild("txtSuitId");            m_btnAnswerStart = (GButton)comp.GetChild("btnAnswerStart");            m_btnAnswerEnd = (GButton)comp.GetChild("btnAnswerEnd");            m_btnAnswerActiveEnd = (GButton)comp.GetChild("btnAnswerActiveEnd");            m_btnArenaGrade = (GButton)comp.GetChild("btnArenaGrade");            m_txtArenaGrade = (GTextInput)comp.GetChild("txtArenaGrade");            m_txtArenaRank = (GTextInput)comp.GetChild("txtArenaRank");            m_btnLeagueSkill = (GButton)comp.GetChild("btnLeagueSkill");            m_txtskillType = (GTextInput)comp.GetChild("txtskillType");            m_btnMaxFightSpeed = (GButton)comp.GetChild("btnMaxFightSpeed");            m_btnAddLeagueNum = (GButton)comp.GetChild("btnAddLeagueNum");            m_AddLeagueNumType = (GTextInput)comp.GetChild("AddLeagueNumType");            m_AddNum = (GTextInput)comp.GetChild("AddNum");            m_btnSetLeaguNum = (GButton)comp.GetChild("btnSetLeaguNum");            m_SetLeagueNumType = (GTextInput)comp.GetChild("SetLeagueNumType");            m_SetNum = (GTextInput)comp.GetChild("SetNum");            m_btnTeaPartyStart = (GButton)comp.GetChild("btnTeaPartyStart");        }        public void Dispose(bool disposeTarget = false)        {            m_c1 = null;            m_btnAll = null;            m_btnWealth = null;            m_btnCardMaterials = null;            m_btnGetAllDressUpItem = null;            m_btnGetAllCardItem = null;            m_btnSetLv = null;            m_txtRoleLv = null;            m_btnSetChapter = null;            m_txtChapter = null;            m_txtChapterLv = null;            m_btnGetSuit = null;            m_txtSuitId = null;            m_btnAnswerStart = null;            m_btnAnswerEnd = null;            m_btnAnswerActiveEnd = null;            m_btnArenaGrade = null;            m_txtArenaGrade = null;            m_txtArenaRank = null;            m_btnLeagueSkill = null;            m_txtskillType = null;            m_btnMaxFightSpeed = null;            m_btnAddLeagueNum = null;            m_AddLeagueNumType = null;            m_AddNum = null;            m_btnSetLeaguNum = null;            m_SetLeagueNumType = null;            m_SetNum = null;            m_btnTeaPartyStart = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |