| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.League{    public partial class UI_LeagueAnsweringUI    {        public GComponent target;        public Controller m_ctrlHasIcon;        public Controller m_ctrlQuestionState;        public Controller m_ctrlQuestionType;        public Controller m_ctrlResult;        public GLoader m_loaBg;        public GGraph m_holder;        public GButton m_btnBack;        public GTextField m_txtTime;        public GButton m_btnRule;        public GTextField m_txtRightCount;        public GTextField m_txtAnswerTime;        public GTextField m_txtAnswerNum;        public GTextField m_txtContent;        public GList m_listResult;        public GTextInput m_txtResult;        public GImage m_imgFault;        public GTextField m_txtRightCount1;        public GLoader m_loaIocn;        public UI_ComHeadIcon m_comRightHead;        public GGraph m_holderHead;        public GImage m_imgFail;        public GTextField m_txtInfo;        public GTextField m_txtCdTime;        public GTextField m_txtJoinNum;        public GList m_listJoin;        public GList m_listChat;        public GTextInput m_txtChat;        public GButton m_btnSend;        public const string URL = "ui://tw70qm9dpvb453";        public const string PACKAGE_NAME = "League";        public const string RES_NAME = "LeagueAnsweringUI";        private static UI_LeagueAnsweringUI _proxy;        public static UI_LeagueAnsweringUI Create(GObject gObject = null)        {            var ui = new UI_LeagueAnsweringUI();            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_LeagueAnsweringUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_LeagueAnsweringUI();            }            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_ctrlHasIcon = comp.GetController("ctrlHasIcon");            m_ctrlQuestionState = comp.GetController("ctrlQuestionState");            m_ctrlQuestionType = comp.GetController("ctrlQuestionType");            m_ctrlResult = comp.GetController("ctrlResult");            m_loaBg = (GLoader)comp.GetChild("loaBg");            m_holder = (GGraph)comp.GetChild("holder");            m_btnBack = (GButton)comp.GetChild("btnBack");            m_txtTime = (GTextField)comp.GetChild("txtTime");            m_btnRule = (GButton)comp.GetChild("btnRule");            m_txtRightCount = (GTextField)comp.GetChild("txtRightCount");            m_txtAnswerTime = (GTextField)comp.GetChild("txtAnswerTime");            m_txtAnswerNum = (GTextField)comp.GetChild("txtAnswerNum");            m_txtContent = (GTextField)comp.GetChild("txtContent");            m_listResult = (GList)comp.GetChild("listResult");            m_txtResult = (GTextInput)comp.GetChild("txtResult");            m_imgFault = (GImage)comp.GetChild("imgFault");            m_txtRightCount1 = (GTextField)comp.GetChild("txtRightCount1");            m_loaIocn = (GLoader)comp.GetChild("loaIocn");            m_comRightHead = (UI_ComHeadIcon)UI_ComHeadIcon.Create(comp.GetChild("comRightHead"));            m_holderHead = (GGraph)comp.GetChild("holderHead");            m_imgFail = (GImage)comp.GetChild("imgFail");            m_txtInfo = (GTextField)comp.GetChild("txtInfo");            m_txtCdTime = (GTextField)comp.GetChild("txtCdTime");            m_txtJoinNum = (GTextField)comp.GetChild("txtJoinNum");            m_listJoin = (GList)comp.GetChild("listJoin");            m_listChat = (GList)comp.GetChild("listChat");            m_txtChat = (GTextInput)comp.GetChild("txtChat");            m_btnSend = (GButton)comp.GetChild("btnSend");        }        public void Dispose(bool disposeTarget = false)        {            m_ctrlHasIcon = null;            m_ctrlQuestionState = null;            m_ctrlQuestionType = null;            m_ctrlResult = null;            m_loaBg = null;            m_holder = null;            m_btnBack = null;            m_txtTime = null;            m_btnRule = null;            m_txtRightCount = null;            m_txtAnswerTime = null;            m_txtAnswerNum = null;            m_txtContent = null;            m_listResult = null;            m_txtResult = null;            m_imgFault = null;            m_txtRightCount1 = null;            m_loaIocn = null;            m_comRightHead.Dispose();            m_comRightHead = null;            m_holderHead = null;            m_imgFail = null;            m_txtInfo = null;            m_txtCdTime = null;            m_txtJoinNum = null;            m_listJoin = null;            m_listChat = null;            m_txtChat = null;            m_btnSend = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |